I have the following cmake file:
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake/find_modules)
find_package(gtest REQUIRED)
find_package(EasyLOGGINGPP REQUIRED)
And I get the following errors:
-- Could NOT find GTest (missing: GTEST_LIBRARY GTEST_INCLUDE GTEST_MAIN_LIBRARY)
-- Could NOT find EASYLOGGINGPP (missing: EASYLOGGINGPP_INCLUDE_DIR)
I downloaded, compiled and installed each package, of which they are located:
C:\Program Files (x86)\googletest-distribution
and
C:\Program Files (x86)\Easyloggingpp
But CMake still refuses to find them... Am I really missing something?