You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could the main README briefly mention that gmock is a dependency; and where
to get it? Ideally in the main README, or some FAQ entry on the wiki or something
like that. That way people who want to get shaderc for the vulkan-releated stuff,
know where to go to next. Thanks for reading.
The text was updated successfully, but these errors were encountered:
I think the confusion here results from a missing googletest being reported as a missing gmock, even though gmock was absorbed into googletest some time ago.
third_party/CMakeLists.txt:
# Configure third party projects.if(${SHADERC_ENABLE_TESTS})
if (IS_DIRECTORY${SHADERC_GOOGLE_TEST_DIR})
add_subdirectory(${SHADERC_GOOGLE_TEST_DIR} googletest)
endif()
if (NOTTARGET gmock)
message(FATAL_ERROR"gmock was not found - required for tests")
endif()
endif()
Could the main README briefly mention that gmock is a dependency; and where
to get it? Ideally in the main README, or some FAQ entry on the wiki or something
like that. That way people who want to get shaderc for the vulkan-releated stuff,
know where to go to next. Thanks for reading.
The text was updated successfully, but these errors were encountered: