diff options
author | Brad King <brad.king@kitware.com> | 2016-04-28 13:26:07 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-04-28 13:26:07 (GMT) |
commit | 954c06803d32ee35c9af94969a4386848e6b7b79 (patch) | |
tree | f06f40bc9b243aaa7bfe67911ce7046a7974ff93 /Tests | |
parent | 63b52b60c45317c3de159b8943aa268b77da6898 (diff) | |
parent | 7db9f3f294126e5e02d172e54c83a8ac90ed23a3 (diff) | |
download | CMake-954c06803d32ee35c9af94969a4386848e6b7b79.zip CMake-954c06803d32ee35c9af94969a4386848e6b7b79.tar.gz CMake-954c06803d32ee35c9af94969a4386848e6b7b79.tar.bz2 |
Merge topic 'ExternalProject-git-clone-shallow'
7db9f3f2 ExternalProject: Add option to perform a shallow Git clone (#15291)
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/ExternalProject/CMakeLists.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Tests/ExternalProject/CMakeLists.txt b/Tests/ExternalProject/CMakeLists.txt index b5041c7..ca6462d 100644 --- a/Tests/ExternalProject/CMakeLists.txt +++ b/Tests/ExternalProject/CMakeLists.txt @@ -349,6 +349,20 @@ if(do_git_tests) ) set_property(TARGET ${proj} PROPERTY FOLDER "GIT") + # Live git / master (no GIT_TAG), but shallow + # + set(proj TutorialStep1-GIT-shallow-master) + ExternalProject_Add(${proj} + GIT_REPOSITORY "${local_git_repo}" + GIT_SHALLOW 1 + CMAKE_GENERATOR "${CMAKE_GENERATOR}" + CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR> + INSTALL_COMMAND "" + DEPENDS "SetupLocalGITRepository" + LOG_UPDATE 1 + ) + set_property(TARGET ${proj} PROPERTY FOLDER "GIT") + # git by explicit branch/tag with empty submodule list # set(proj TutorialStep1-GIT-bytag-withsubmodules) @@ -543,6 +557,9 @@ if(do_git_tests) add_test(TutorialStep1-GIT-bytag "${binary_base}/TutorialStep1-GIT-bytag/Tutorial" 99) + add_test(TutorialStep1-GIT-shallow-master + "${binary_base}/TutorialStep1-GIT-shallow-master/Tutorial" 98) + add_test(TutorialStep1-GIT-master "${binary_base}/TutorialStep1-GIT-master/Tutorial" 98) endif() |