Skip to content

Commit 0b13b34

Browse files
committed
fix type in powershell script
1 parent 4837243 commit 0b13b34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ tasks:
4747

4848
clean: |
4949
{{if eq OS "windows"}}
50-
powershell -c 'function rmrf($path) { if (test-path $path) { rm -r -force $path }}; rmrf ./test/build; rmrf ./test_install/build
50+
powershell -c 'function rmrf($path) { if (test-path $path) { rm -r -force $path }}; rmrf ./test/build; rmrf ./test_install/build'
5151
{{else}}
5252
rm -rf ./test/build ./test_install/build
5353
{{end}}

test_install/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ project(
1414

1515
### Initialize project_options
1616
project_options(
17-
ENABLE_CACHE
17+
# ENABLE_CACHE
1818
ENABLE_CONAN
1919
# # WARNINGS_AS_ERRORS
2020
# ENABLE_CPPCHECK
@@ -24,7 +24,7 @@ project_options(
2424
# # ENABLE_PCH
2525
# # PCH_HEADERS <Eigen/Dense> <fmt/core.h> <vector> <utility> <string> <string_view>
2626
# # ENABLE_DOXYGEN
27-
ENABLE_INTERPROCEDURAL_OPTIMIZATION
27+
# ENABLE_INTERPROCEDURAL_OPTIMIZATION
2828
# # ENABLE_USER_LINKER
2929
# # ENABLE_BUILD_WITH_TIME_TRACE
3030
# # ENABLE_UNITY

0 commit comments

Comments
 (0)