diff options
author | Brad King <brad.king@kitware.com> | 2022-03-02 13:56:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-03-02 14:47:02 (GMT) |
commit | ac37e99453f21b57fcd09cc037a7925a7bc017f3 (patch) | |
tree | a40360cf6ab6c4914686f83b8c75e3db41207ffc /.gitlab/ci | |
parent | 020920e8b5cbbff14323a29d5f7ff51ba2e3cb83 (diff) | |
download | CMake-ac37e99453f21b57fcd09cc037a7925a7bc017f3.zip CMake-ac37e99453f21b57fcd09cc037a7925a7bc017f3.tar.gz CMake-ac37e99453f21b57fcd09cc037a7925a7bc017f3.tar.bz2 |
ci: Rename variable CMake_SKIP_INSTALL to CMAKE_CI_NO_INSTALL
The latter follows our convention for other variable names.
Diffstat (limited to '.gitlab/ci')
-rw-r--r-- | .gitlab/ci/ctest_build.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab/ci/ctest_build.cmake b/.gitlab/ci/ctest_build.cmake index e7a0985..4bb2924 100644 --- a/.gitlab/ci/ctest_build.cmake +++ b/.gitlab/ci/ctest_build.cmake @@ -37,7 +37,7 @@ if ("$ENV{CTEST_NO_WARNINGS_ALLOWED}" AND num_warnings GREATER 0) "Found ${num_warnings} warnings (treating as fatal).") endif () -if (NOT "$ENV{CMake_SKIP_INSTALL}") +if (NOT "$ENV{CMAKE_CI_NO_INSTALL}") ctest_build(APPEND TARGET install RETURN_VALUE install_result) |