add cmake to linux and macos platform
This commit is contained in:
parent
fdb1987f6f
commit
7b051e3fb0
1 changed files with 8 additions and 0 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
@ -17,6 +17,10 @@ jobs:
|
|||
- name: Build
|
||||
run: |
|
||||
make
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
cmake --build . --config Release
|
||||
|
||||
macOS-latest:
|
||||
runs-on: macOS-latest
|
||||
|
@ -32,6 +36,10 @@ jobs:
|
|||
- name: Build
|
||||
run: |
|
||||
make
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
cmake --build . --config Release
|
||||
|
||||
windows-latest:
|
||||
runs-on: windows-latest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue