diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a35b1bd..0878b02 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,3 +24,16 @@ jobs: cmake --build . --config $BUILD_TYPE -j4 cpack + build-windows: + name: Build Windows + runs-on: windows-latest + steps: + - uses: actions/checkout@v3.3.0 + with: + submodules: recursive + + - name: Build Plugin + working-directory: ${{github.workspace}}/build + run: | + cmake.exe -G "Visual Studio 17 2022" -A x64 .. + cmake --build . --config=release -j4