Skip to content

Commit

Permalink
use relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
t0mdavid-m committed Jun 26, 2024
1 parent 4ed2d8a commit 2f0cad4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-windows-executable-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,13 @@ jobs:
- name: Configure CMake
run: |
mkdir $GITHUB_WORKSPACE/OpenMS/bld/
cmake -B ${{ github.workspace }}/OpenMS/bld/ -S ${{ github.workspace }}/OpenMS \
mkdir -p ${{ github.workspace }}/OpenMS/bld/
cd ${{ github.workspace }}/OpenMS
cmake -B bld -S . \
-DCMAKE_INSTALL_OPENMP_LIBRARIES=TRUE \
-DCMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION='bin' \
-DCMAKE_BUILD_TYPE=Release
cmake --build bld --config Release
shell: bash

- name: Build Windows
Expand Down

0 comments on commit 2f0cad4

Please sign in to comment.