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:26:33 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2019-10-09 15:26:33 +0300
commitf473bb3c55121c7486072105948b2299675ca451 (patch)
treecdffcb47fa56d7bcf20c42c764488bb83f667d0f /.ci.cmake
parent461df4f3340361c604c98c38b7b60a1b931221e8 (diff)
Reenable cdash, print config options supplied.
Diffstat (limited to '.ci.cmake')
-rw-r--r--.ci.cmake6
1 files changed, 4 insertions, 2 deletions
diff --git a/.ci.cmake b/.ci.cmake
index a6e3c82b..b54731a4 100644
--- a/.ci.cmake
+++ b/.ci.cmake
@@ -3,16 +3,18 @@
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 -DCMAKE_BUILD_TYPE=${CTEST_CONFIGURATION_TYPE};${CTEST_CONFIGURE_OPTIONS})
+ctest_configure(OPTIONS ${CTEST_CONFIGURE_OPTIONS})
ctest_build(TARGET _dl)
ctest_build(TARGET _sl)
set(retval 0)