blob: 25fb88b87ea92596c2dce869cb130f19fc26dd09 (
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
@@ -55,10 +55,7 @@ set(LIT_ARGS -s CACHE STRING "Arguments to pass to lit")
# the location of GTest source code is probably error prone so using a copy in the
# repository seems like the easiest thing to do. This also has the added benefit that
# everyone uses the same version of GTest.
-set(GTEST_PREFIX ${PROJECT_SOURCE_DIR}/deps/gtest)
-if (NOT EXISTS "${GTEST_PREFIX}/CMakeLists.txt")
- message(FATAL_ERROR "Could not find GTest. Did you run scripts/deps/setup-gtest.sh?")
-endif()
+find_package(GTest REQUIRED)
if (MSVC)
# STP is built with the shared version of the CRT, gtest defaults to the
@@ -68,11 +65,8 @@ endif()
set(PREV_CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-format-nonliteral -Wno-missing-field-initializers")
-add_subdirectory(${GTEST_PREFIX} gtest)
set(CMAKE_CXX_FLAGS "${PREV_CMAKE_CXX_FLAGS}")
-set(GTEST_BOTH_LIBRARIES gtest gtest_main)
-include_directories(${GTEST_PREFIX}/include)
# Add handy macros/functions
include(AddSTPGTest)
|