Skip to content

update linux toolset #326

update linux toolset

update linux toolset #326

Workflow file for this run

name: vs-build
on: push
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Create Build Environment
run: cmake -E make_directory build
- name: Configure CMake
shell: cmd
working-directory: build
run: cmake %GITHUB_WORKSPACE% -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -A Win32
- name: Build
working-directory: build
shell: cmd
run: cmake --build . --target cocoslua --config %BUILD_TYPE%