added L-shaped polygon option in n_sided_polygon #159
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: windows-build | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: configure | |
run: | | |
cd examples | |
mkdir build | |
cd build | |
cmake .. -G "Visual Studio 17 2022" -Dcinolib_DIR="D:/a/cinolib/cinolib" | |
- name: build | |
run: | | |
cd examples | |
cd build | |
cmake --build . --parallel 8 |