appveyor.yml 362 B

1234567891011121314151617181920212223
  1. # can use variables like {build} and {branch}
  2. version: 1.0.{build}
  3. image: Visual Studio 2015
  4. environment:
  5. BUILD_DIR: "%APPVEYOR_BUILD_FOLDER%\\build"
  6. platform:
  7. - Win32
  8. configuration:
  9. - Release
  10. before_build:
  11. - deps.bat
  12. - cd %BUILD_DIR%
  13. - cmake .. -G"%CMAKE_GENERATOR_NAME%"
  14. build:
  15. parallel: true
  16. project: build/entt.sln
  17. verbosity: minimal