21 lines
415 B
YAML
21 lines
415 B
YAML
name: Windows Build
|
|
|
|
runs:
|
|
using: composite
|
|
|
|
steps:
|
|
- name: Create build directory
|
|
run: mkdir build
|
|
shell: bash
|
|
|
|
- name: Configure
|
|
run: cmake -LA .. -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
|
|
shell: bash
|
|
working-directory: build
|
|
|
|
- name: Build
|
|
run: cmake --build .
|
|
shell: bash
|
|
working-directory: build
|
|
|