Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions exports/taskfiles/utils/cmake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ tasks:
--target="{{.}}"
{{- end}}
{{- range .EXTRA_ARGS}}
"{{.}}"
{{.}}
{{- end}}

# Runs the CMake clean target for the given build directory. The caller must have previously
Expand Down Expand Up @@ -81,7 +81,7 @@ tasks:
-S "{{.SOURCE_DIR}}"
-B "{{.BUILD_DIR}}"
{{- range .EXTRA_ARGS}}
"{{.}}"
{{.}}
{{- end}}

# Runs the CMake install step for the given build directory. The caller must have previously
Expand Down Expand Up @@ -123,7 +123,7 @@ tasks:
--install "{{.BUILD_DIR}}"
--prefix "{{.INSTALL_PREFIX}}"
{{- range .EXTRA_ARGS}}
"{{.}}"
{{.}}
Comment thread
davidlion marked this conversation as resolved.
{{- end}}
- >-
{{- if .CMAKE_SETTINGS_DIR}}
Expand Down