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>2020-04-16 13:16:18 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-04-16 13:16:18 +0300
commitad9b0ce12ce299a57b6af58621faf3eca9a3861e (patch)
treefcc43921d29b659598a40f00ae7996a7d07ab54d /CMakeLists.txt
parent11c1cd4dbb0933bc1ac1eefb01d0c044aac08698 (diff)
Filled in more of a test IOCP multiplexer.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3866d3a0..5de1c2db 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -57,7 +57,14 @@ find_quickcpplib_library(outcome
IS_HEADER_ONLY
)
if(WIN32)
+ set(OLD_PROJECT_IS_DEPENDENCY ${PROJECT_IS_DEPENDENCY})
+ set(PROJECT_IS_DEPENDENCY On)
add_subdirectory("include/llfio/ntkernel-error-category" EXCLUDE_FROM_ALL)
+ if(OLD_PROJECT_IS_DEPENDENCY)
+ set(PROJECT_IS_DEPENDENCY ${OLD_PROJECT_IS_DEPENDENCY})
+ else()
+ set(PROJECT_IS_DEPENDENCY)
+ endif()
endif()
set(UNIT_TESTS_CXX_VERSION "latest" CACHE STRING "The version of C++ to use in the header-only unit tests")