Files
nanoflann/appveyor.yml
Jose Luis Blanco-Claraco f1e47f0dba Changelog update
2023-06-16 00:55:16 +02:00

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"