We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21c5530 commit 4043a81Copy full SHA for 4043a81
1 file changed
.github/workflows/cmake.yml
@@ -170,7 +170,12 @@ jobs:
170
env:
171
CC: ${{ matrix.config.cc }}
172
CXX: ${{ matrix.config.cxx }}
173
- run: cmake --build build --config ${{env.BUILD_TYPE}} --target ${{env.TARGET}}
+ run: |
174
+ targets=("${{ env.TARGET }}")
175
+ if [[ "$RUNNER_OS" == "Windows" ]]; then
176
+ targets+=("${{ env.TARGET }}-cmd")
177
+ fi
178
+ cmake --build build --config ${{env.BUILD_TYPE}} --target "${targets[@]}"
179
180
- name: Install Strip
181
shell: bash
0 commit comments