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:
Diffstat (limited to '.ci.cmake')
-rw-r--r--.ci.cmake5
1 files changed, 3 insertions, 2 deletions
diff --git a/.ci.cmake b/.ci.cmake
index 1cfef639..61c91b76 100644
--- a/.ci.cmake
+++ b/.ci.cmake
@@ -13,15 +13,16 @@ set(CTEST_GIT_COMMAND "${GIT_EXECUTABLE}")
ctest_start("Experimental")
ctest_update()
ctest_configure(OPTIONS "${CTEST_CONFIGURE_OPTIONS}")
+ctest_build(TARGET _hl)
ctest_build(TARGET _dl)
ctest_build(TARGET _sl)
set(retval 0)
if(NOT CTEST_DISABLE_TESTING)
if(WIN32)
# Appveyor's Windows version doesn't permit unprivileged creation of symbolic links
- ctest_test(RETURN_VALUE retval EXCLUDE "llfio_hl|shared_fs_mutex|symlink")
+ ctest_test(RETURN_VALUE retval EXCLUDE "shared_fs_mutex|symlink")
else()
- ctest_test(RETURN_VALUE retval EXCLUDE "llfio_hl|shared_fs_mutex")
+ ctest_test(RETURN_VALUE retval EXCLUDE "shared_fs_mutex")
endif()
endif()
if(WIN32)