Skip to content

Commit

Permalink
Merge pull request #107 from alexswerner/master
Browse files Browse the repository at this point in the history
fix build as a cmake subproject
  • Loading branch information
lemire authored Jun 5, 2023
2 parents 70e176f + 518f053 commit 8e67fbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ include(ExternalProject)
ExternalProject_Add(googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG main
SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src"
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build"
SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-src"
BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-build"
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
Expand Down

0 comments on commit 8e67fbd

Please sign in to comment.