3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-29 16:34:53 +02:00

[cmake] move gtest last (so cpp2py python wins)

This commit is contained in:
Dylan Simon 2020-05-19 17:11:16 -04:00
parent ab12e2f966
commit d3fc0d26bf

16
deps/CMakeLists.txt vendored
View File

@ -46,14 +46,6 @@ else()
endif()
endif()
# -- GTest --
external_dependency(GTest
GIT_REPO https://github.com/google/googletest
GIT_TAG release-1.10.0
BUILD_ALWAYS
EXCLUDE_FROM_ALL
)
# -- Cpp2Py --
if(PythonSupport OR Build_Documentation)
external_dependency(Cpp2Py
@ -64,3 +56,11 @@ if(PythonSupport OR Build_Documentation)
EXCLUDE_FROM_ALL
)
endif()
# -- GTest --
external_dependency(GTest
GIT_REPO https://github.com/google/googletest
GIT_TAG release-1.10.0
BUILD_ALWAYS
EXCLUDE_FROM_ALL
)