mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-08-30 21:51:12 +02:00
fix: windows compilation
This commit is contained in:
parent
21320e29ef
commit
1bfe0ea600
1 changed files with 6 additions and 1 deletions
7
.github/workflows/standalone.yml
vendored
7
.github/workflows/standalone.yml
vendored
|
@ -35,5 +35,10 @@ jobs:
|
||||||
- name: build
|
- name: build
|
||||||
run: cmake --build build -j4
|
run: cmake --build build -j4
|
||||||
|
|
||||||
- name: run
|
- name: run on unix-like
|
||||||
|
if: startsWith(matrix.os, 'macOS') || startsWith(matrix.os,'ubuntu')
|
||||||
run: ./build/Greeter
|
run: ./build/Greeter
|
||||||
|
|
||||||
|
- name: run on windows
|
||||||
|
if: startsWith(matrix.os, 'windows')
|
||||||
|
run: ./build/Debug/Greeter.exe
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue