Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2019-10-09 15:30:46 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2019-10-09 15:30:46 +0300
commit9740ba82970f959840c982372f3abf4a026a10fd (patch)
treea3c4729cdc4a1016a2d8e04785a6d08be24a8b3a /.ci.cmake
parentf473bb3c55121c7486072105948b2299675ca451 (diff)
Try quoting arg to ctest_configure
Diffstat (limited to '.ci.cmake')
-rw-r--r--.ci.cmake4
1 files changed, 1 insertions, 3 deletions
diff --git a/.ci.cmake b/.ci.cmake
index b54731a4..1cfef639 100644
--- a/.ci.cmake
+++ b/.ci.cmake
@@ -3,18 +3,16 @@
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
include(cmake/QuickCppLibBootstrap.cmake)
include(QuickCppLibUtils)
-message("*** CTEST_CONFIGURE_OPTIONS = ${CTEST_CONFIGURE_OPTIONS}")
CONFIGURE_CTEST_SCRIPT_FOR_CDASH("llfio" "prebuilt")
list(APPEND CTEST_CONFIGURE_OPTIONS -DCMAKE_BUILD_TYPE=${CTEST_CONFIGURATION_TYPE})
-message("*** CTEST_CONFIGURE_OPTIONS = ${CTEST_CONFIGURE_OPTIONS}")
ctest_empty_binary_directory(${CTEST_BINARY_DIRECTORY})
include(FindGit)
set(CTEST_GIT_COMMAND "${GIT_EXECUTABLE}")
ctest_start("Experimental")
ctest_update()
-ctest_configure(OPTIONS ${CTEST_CONFIGURE_OPTIONS})
+ctest_configure(OPTIONS "${CTEST_CONFIGURE_OPTIONS}")
ctest_build(TARGET _dl)
ctest_build(TARGET _sl)
set(retval 0)