blob: 16258763011a4cb6b94ed33f47afb95b118431ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -1,11 +1,4 @@
-include(FetchContent)
-FetchContent_Declare(
- googletest
- URL https://github.com/google/googletest/archive/03597a01ee50ed33e9dfd640b249b4be3799d395.zip
-)
-# For Windows: Prevent overriding the parent project's compiler/linker settings
-set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
-FetchContent_MakeAvailable(googletest)
+find_package(GTest QUIET)
if(MSVC)
add_compile_options(/wd4251)
@@ -54,8 +47,8 @@
${CMAKE_CURRENT_SOURCE_DIR}/test.cpp
)
target_link_libraries(test_run
- gtest_main
- gmock_main
+ GTest::gtest
+ GTest::gmock_main
${Google_Tests_LIBS}
OndselSolver
)
|