Skip to content

Commit

Permalink
cmake: disable gtest update step
Browse files Browse the repository at this point in the history
  • Loading branch information
Helco committed Nov 18, 2018
1 parent 3c5633a commit b508cae
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions external/GTest.CMakeLists.txt.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ project(googletest-download NONE)

include(ExternalProject)
ExternalProject_Add(googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG master
SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src"
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build"
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
TEST_COMMAND ""
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG master
SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src"
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build"
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
TEST_COMMAND ""
UPDATE_DISCONNECTED 1
)

0 comments on commit b508cae

Please sign in to comment.