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.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()