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 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index afa8328c..6d55c73f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -76,3 +76,13 @@ endif()
# For all possible configurations of this library, add each test
include(BoostLiteMakeStandardTests)
+# For each test target, set compile options
+if(MSVC)
+ foreach(test_target ${afio_TEST_TARGETS})
+ target_compile_options(${test_target} PRIVATE /wd4503) ## decorated name length exceeded
+ endforeach()
+endif()
+
+# Make available this library for install and export
+include(BoostLiteMakeInstall)
+include(BoostLiteMakeExport)