diff options
author | Brad King <brad.king@kitware.com> | 2017-06-01 17:33:16 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-06-01 17:35:08 (GMT) |
commit | 987216062e8718e0c37970c7ea595703057ce344 (patch) | |
tree | 55677902beb87e2ae161140c9112168dd189f2d4 | |
parent | 75850db66758ccdb4500ca0d580a2b97215a9357 (diff) | |
parent | 52d0983a88a28709ced63dc0a9ad955d75cdbfe8 (diff) | |
download | CMake-987216062e8718e0c37970c7ea595703057ce344.zip CMake-987216062e8718e0c37970c7ea595703057ce344.tar.gz CMake-987216062e8718e0c37970c7ea595703057ce344.tar.bz2 |
Merge topic 'test-external-no-bootstrap'
52d0983a Tests: Skip BootstrapTest if testing external CMake
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !916
-rw-r--r-- | Tests/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index 21fe641..2c05789 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -3110,6 +3110,9 @@ ${CMake_BINARY_DIR}/bin/cmake -DDIR=dev -P ${CMake_SOURCE_DIR}/Utilities/Release endif () endif () + if(CMake_TEST_EXTERNAL_CMAKE) + set(CMAKE_SKIP_BOOTSTRAP_TEST 1) + endif() if("${CMAKE_GENERATOR}" MATCHES Xcode) set(CMAKE_SKIP_BOOTSTRAP_TEST 1) endif() |