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>2018-11-17 19:23:09 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2018-11-17 19:23:09 +0300
commit8953c3a9fcd4b54ab6cefb26567a562cadcb1c36 (patch)
tree4f69c4fd94bc947e359f73de83f61dbee42952cb /CMakeLists.txt
parenta5e0bb3b263de680ce1b05504042f81714e8ac15 (diff)
Added combining_handle_adapter and xor_handle_adapter. These were written over a number of weeks in very short bursts on the train to work, so they are riddled with bugs. Do not use them until the documentation warning regarding them has been removed.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 55a177ce..b863b5e0 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -38,7 +38,7 @@ include(QuickCppLibMakeHeaderOnlyLibrary)
if(NOT PROJECT_IS_DEPENDENCY)
if(NOT PYTHONINTERP_FOUND)
indented_message(WARNING "NOT rebuilding preprocessed edition of library due to python not being installed")
- else()
+ elseif(FALSE)
# See if the ply package is installed so pcpp can run
execute_process(COMMAND python -c "import ply" RESULT_VARIABLE python_has_ply)
if(NOT python_has_ply EQUAL 0)
@@ -191,7 +191,8 @@ foreach(test_target ${llfio_TEST_TARGETS})
endforeach()
if(MSVC)
foreach(test_target ${llfio_TEST_TARGETS})
- target_compile_options(${test_target} PRIVATE /wd4503) ## decorated name length exceeded
+ target_compile_options(${test_target} PRIVATE /wd4503) ## decorated name length exceeded
+ #target_compile_options(${test_target} PRIVATE /permissive-) ## future parsing
endforeach()
endif()