Skip to content

Commit

Permalink
Merge pull request #9 from hechth/master
Browse files Browse the repository at this point in the history
Renaming of repository names to avoid name clashes
  • Loading branch information
hechth authored Apr 15, 2020
2 parents af5e2e4 + c102d54 commit 6e3d144
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions UnitTests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
#

FetchContent_Declare(
gtest
dep_gtest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG release-1.10.0
)

FetchContent_GetProperties(gtest)
if(NOT gtest_POPULATED)
FetchContent_Populate(gtest)
add_subdirectory(${gtest_SOURCE_DIR} ${gtest_BINARY_DIR} EXCLUDE_FROM_ALL)
FetchContent_GetProperties(dep_gtest)
if(NOT dep_gtest_POPULATED)
FetchContent_Populate(dep_gtest)
add_subdirectory(${dep_gtest_SOURCE_DIR} ${dep_gtest_BINARY_DIR} EXCLUDE_FROM_ALL)
endif()


Expand Down

0 comments on commit 6e3d144

Please sign in to comment.