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
Inside FindGMock.cmake we're using find_dependency() from the CMakeFindDependencyMacro module. That module only got added in CMake 3.0. Furthermore we're relying on the import target Threads::Threads, which only gets added with CMake 3.1.
This is what #152 was about and #140 also addresses.
The text was updated successfully, but these errors were encountered:
Inside FindGMock.cmake we're using
find_dependency()
from theCMakeFindDependencyMacro module
. That module only got added in CMake 3.0. Furthermore we're relying on the import targetThreads::Threads
, which only gets added with CMake 3.1.This is what #152 was about and #140 also addresses.
The text was updated successfully, but these errors were encountered: