appveyor.yml 494 B

123456789101112131415161718192021222324
  1. # version format
  2. version: 1.5.0-{branch}-build{build}
  3. os: Visual Studio 2019
  4. clone_folder: c:\projects\nanoflann
  5. platform: x64
  6. configuration: Release
  7. environment:
  8. CTEST_OUTPUT_ON_FAILURE: 1
  9. VERBOSE: 1 # for cmake scripts to show more info
  10. build_script:
  11. - cd c:\projects\nanoflann
  12. - cd c:\projects\nanoflann\build\
  13. - cmake --build . --config Release
  14. - ctest -C Release
  15. before_build:
  16. - cd c:\projects\nanoflann
  17. - mkdir build
  18. - cmake -S. -Bbuild -G "Visual Studio 16 2019"