Construct camera from transformation matrix directly & add cbox-caustic
scene
#183
Workflow file for this run
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: Build (Windows, MSVC) | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
BUILD_TYPE: Debug | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
- name: Configure CMake | |
run: cmake -B ./build | |
- name: Build | |
# Build your program with the given configuration | |
run: cmake --build ./build --config Debug |