mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-09-04 16:10:53 +02:00
Respect CMAKE_DEBUG_POSTFIX setup
This commit is contained in:
parent
d81a42450c
commit
0bb3325679
3 changed files with 5 additions and 6 deletions
6
.github/workflows/standalone.yml
vendored
6
.github/workflows/standalone.yml
vendored
|
@ -32,5 +32,7 @@ jobs:
|
|||
- name: build
|
||||
run: cmake --build build -j4
|
||||
|
||||
- name: run
|
||||
run: ./build/Greeter
|
||||
- name: test
|
||||
run: |
|
||||
cd build
|
||||
ctest --build-config Debug
|
||||
|
|
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
|
@ -28,7 +28,7 @@ jobs:
|
|||
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
|
||||
|
||||
- name: configure
|
||||
run: cmake -S test -B build -G "Visual Studio 17 2022" -D BUILD_SHARED_LIBS=NO
|
||||
run: cmake -S test -B build # -G "Visual Studio 17 2022" -D BUILD_SHARED_LIBS=NO
|
||||
|
||||
- name: build
|
||||
run: cmake --build build --config Debug -j4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue