using COPY_FILE only with cmake 3.21+ where it is introduced (#1318) #2453
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: C/C++ CI on Windows (vs2019) | |
on: | |
push: | |
branches: | |
- master | |
- main | |
- dev | |
pull_request: | |
branches: | |
- master | |
- main | |
- dev | |
jobs: | |
build: | |
runs-on: windows-2019 | |
name: Build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
continue-on-error: true | |
- name: Build | |
env: | |
SKIP_ARM_BUILD: 1 | |
SKIP_ARM64_BUILD: 1 | |
PlatformToolset: v142 | |
VSTOOLS_VERSION: vs2019 | |
shell: cmd | |
run: build-all.bat |