terravisor/.gitlab-ci.yml

14 lines
308 B
YAML
Raw Normal View History

# Define the stages of your pipeline
2024-08-10 23:24:51 -04:00
stages:
- build
2024-08-10 23:24:51 -04:00
variables:
VCPKG_ROOT: "/vcpkg"
build:
stage: build
2024-08-10 23:35:01 -04:00
script:
# Set the VCPKG_TOOLCHAIN environment variable
- export VCPKG_TOOLCHAIN=$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake
- cmake -B build -S . -G Ninja
- cmake --build build