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-09-20 21:19:37 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2016-09-20 21:19:37 +0300
commit74e32489e34b13b98f7e84c006162a5f98bd19d1 (patch)
tree8353ff74ee9a45019a496a63bbe490b20bafd811 /CMakeLists.txt
parentd17679d47b37253982ef82007824712d71c0af67 (diff)
Fixed up the boost-lite C++ Modules build support which had become stale, and Gaby wanted a repro for the ICE we see when turning on C++ Modules.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt9
1 files changed, 0 insertions, 9 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cd2b3076..0efc3e7c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -71,15 +71,6 @@ foreach(lib afio_sl afio_dl)
target_compile_definitions(${lib} INTERFACE BOOST_AFIO_HEADERS_ONLY=0)
target_compile_definitions(${lib} PRIVATE BOOST_AFIO_SOURCE=1)
endforeach()
-# Test C++ Modules (ICEs in VS2015 Update 3)
-if(MSVC AND 0)
- target_compile_definitions(afio_dl PUBLIC -D__cpp_modules=1)
- target_compile_options(afio_dl PUBLIC /experimental:module)
- target_sources(afio_dl PRIVATE include/boost/afio/afio.ixx)
- set_source_files_properties(include/boost/afio/afio.ixx PROPERTIES
- LANGUAGE CXX
- )
-endif()
# For all possible configurations of this library, add each test
include(BoostLiteMakeStandardTests)