🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
443 B

  1. # can use variables like {build} and {branch}
  2. version: 1.0.{build}
  3. image: Visual Studio 2017
  4. environment:
  5. BUILD_DIR: "%APPVEYOR_BUILD_FOLDER%\\build"
  6. platform:
  7. - Win32
  8. configuration:
  9. - Release
  10. before_build:
  11. - cd %BUILD_DIR%
  12. - cmake .. -DBUILD_TESTING=ON -DBUILD_LIB=ON -DCMAKE_CXX_FLAGS=/W1 -G"Visual Studio 15 2017"
  13. after_build:
  14. - ctest -C Release -j4
  15. build:
  16. parallel: true
  17. project: build/entt.sln
  18. verbosity: minimal