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>2016-07-27 10:40:05 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2016-07-27 10:40:05 +0300
commit85ae4e2e9e0036fbd9c5882df459d19c05339da4 (patch)
tree2321073c45b53060b1bb32e8f1d8a6d7ed61441c /CMakeLists.txt
parent0a111f8d648b6e3c4e6ae3542999659e1ba93512 (diff)
Moved afio over to use new ctest scripting for cdash
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)