Skip to content

Commit

Permalink
Update windows_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
agl-alexglopez committed Aug 4, 2024
1 parent fdd9f17 commit d4cec7a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/windows_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,13 @@ jobs:
- name: Build with nmake
run: |
cmake --build build --config Release --target install
- name: Clean the Install
run: |
Remove-Item -Path install -Recurse
Remove-Item -Path build -Recurse
- name: Build Shared
run: |
cmake -S . -B build -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_PREFIX=install/ -DCMAKE_BUILD_TYPE=Release -G "NMake Makefiles"
cmake --build build --config Release --target install

0 comments on commit d4cec7a

Please sign in to comment.