Skip to content

Commit

Permalink
fix type in powershell script
Browse files Browse the repository at this point in the history
  • Loading branch information
ClausKlein committed Mar 20, 2022
1 parent 4837243 commit 0b13b34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
4 changes: 2 additions & 2 deletions test_install/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ project(

### Initialize project_options
project_options(
ENABLE_CACHE
# ENABLE_CACHE
ENABLE_CONAN
# # WARNINGS_AS_ERRORS
# ENABLE_CPPCHECK
Expand All @@ -24,7 +24,7 @@ project_options(
# # ENABLE_PCH
# # PCH_HEADERS <Eigen/Dense> <fmt/core.h> <vector> <utility> <string> <string_view>
# # ENABLE_DOXYGEN
ENABLE_INTERPROCEDURAL_OPTIMIZATION
# ENABLE_INTERPROCEDURAL_OPTIMIZATION
# # ENABLE_USER_LINKER
# # ENABLE_BUILD_WITH_TIME_TRACE
# # ENABLE_UNITY
Expand Down

0 comments on commit 0b13b34

Please sign in to comment.