mirror of
https://github.com/jlblancoc/nanoflann.git
synced 2026-01-16 21:01:17 +01:00
25 lines
494 B
YAML
25 lines
494 B
YAML
# version format
|
|
version: 1.5.0-{branch}-build{build}
|
|
|
|
os: Visual Studio 2019
|
|
|
|
clone_folder: c:\projects\nanoflann
|
|
|
|
platform: x64
|
|
configuration: Release
|
|
|
|
environment:
|
|
CTEST_OUTPUT_ON_FAILURE: 1
|
|
VERBOSE: 1 # for cmake scripts to show more info
|
|
|
|
build_script:
|
|
- cd c:\projects\nanoflann
|
|
- cd c:\projects\nanoflann\build\
|
|
- cmake --build . --config Release
|
|
- ctest -C Release
|
|
|
|
before_build:
|
|
- cd c:\projects\nanoflann
|
|
- mkdir build
|
|
- cmake -S. -Bbuild -G "Visual Studio 16 2019"
|