Update build.bat #2
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
# Workflow's name | |
name: msvc | |
# Run this workflow every time a new commit pushed to your repository | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Add MSBuild to PATH | |
uses: microsoft/[email protected] | |
- name: Configure CMake | |
run: | | |
cmake --preset x64-debug | |
- name: Build | |
run: cmake --build out/build/x64-debug |