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-12-22 22:34:56 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2021-03-16 13:21:38 +0300
commit82fcea61c21b31ce325dc47401808dd45d4ef42c (patch)
treecbc729475a11da4f0119ebf6db1802509049b725 /CMakeLists.txt
parent2e729a6c6d6d6fef94c6c9fa48826ec313a46fd9 (diff)
wip dynamic_thread_pool_group, so far has Windows support only. Note that LLFIO now hard requires Windows 7 rather than Vista.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index dec1ade8..ccf2387d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -293,7 +293,8 @@ if(LLFIO_USE_EXPERIMENTAL_SG14_STATUS_CODE)
all_compile_definitions(PUBLIC LLFIO_EXPERIMENTAL_STATUS_CODE=1)
endif()
if(WIN32)
- all_compile_definitions(PRIVATE _WIN32_WINNT=0x601) ## Target Win7
+ all_compile_definitions(PRIVATE _WIN32_WINNT=0x601) ## Target Win7
+ target_compile_definitions(llfio_hl INTERFACE _WIN32_WINNT=0x601) ## Target Win7
if(NOT LLFIO_USE_EXPERIMENTAL_SG14_STATUS_CODE)
target_link_libraries(llfio_hl INTERFACE ntkernel-error-category::hl)
target_link_libraries(llfio_dl PUBLIC ntkernel-error-category::dl)