Skip to content

Commit

Permalink
Added github workflows MSVC Support (attempt 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
a-michelis committed Nov 21, 2024
1 parent af996f8 commit 7a89e4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ jobs:
mkdir build\\debug
cd build\\debug
cmake ..\\.. -G "Visual Studio 17 2022" -DCMAKE_BUILD_TYPE="Debug"
cmake --build . --target BUILD_ALL
cmake --build . --target ALL_BUILD
- name: make test
run: |
cd build\\debug
Expand All @@ -213,11 +213,11 @@ jobs:
mkdir build\\release
cd build\\release
cmake ..\\.. -G "Visual Studio 17 2022" -DCMAKE_BUILD_TYPE="Release"
cmake --build . --target BUILD_ALL
cmake --build . --target ALL_BUILD
- name: sudo make install
run: |
cd build\\release
cmake --build . --target install
cmake --build . --target INSTALL
- name: sudo make uninstall
run: |
cd build\\release
Expand Down

0 comments on commit 7a89e4a

Please sign in to comment.