Skip to content

updated

updated #1709

Workflow file for this run

name: windows-build
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
# - name: install dependencies
# run: |
# choco update
# choco install ninja
- name: configure
run: |
mkdir build
cd build
cmake .. -G "Visual Studio 17 2022" -DYOCTO_OPENGL=ON -DYOCTO_EMBREE=OFF -DYOCTO_DENOISE=OFF -DYOCTO_CUDA=OFF
- name: build
run: |
cd build
cmake --build . --parallel 8