From 3699531f6e5a0e585e330d5b2da1c7d2c1e62f62 Mon Sep 17 00:00:00 2001 From: ClausKlein Date: Sun, 20 Mar 2022 21:32:27 +0100 Subject: [PATCH] fix type in powershell script --- Taskfile.yml | 2 +- test_install/CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index ca794014..5a46e0af 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -47,7 +47,7 @@ tasks: clean: | {{if eq OS "windows"}} - powershell -c 'function rmrf($path) { if (test-path $path) { rm -r -force $path }}; rmrf ./test/build; rmrf ./test_install/build + powershell -c 'function rmrf($path) { if (test-path $path) { rm -r -force $path }}; rmrf ./test/build; rmrf ./test_install/build' {{else}} rm -rf ./test/build ./test_install/build {{end}} diff --git a/test_install/CMakeLists.txt b/test_install/CMakeLists.txt index 071f44fd..34dff528 100644 --- a/test_install/CMakeLists.txt +++ b/test_install/CMakeLists.txt @@ -14,7 +14,7 @@ project( ### Initialize project_options project_options( - ENABLE_CACHE +# ENABLE_CACHE ENABLE_CONAN # # WARNINGS_AS_ERRORS # ENABLE_CPPCHECK @@ -24,7 +24,7 @@ project_options( # # ENABLE_PCH # # PCH_HEADERS # # ENABLE_DOXYGEN - ENABLE_INTERPROCEDURAL_OPTIMIZATION +# ENABLE_INTERPROCEDURAL_OPTIMIZATION # # ENABLE_USER_LINKER # # ENABLE_BUILD_WITH_TIME_TRACE # # ENABLE_UNITY