appveyor.yml 325 B

123456789101112131415161718
  1. version: "{build}"
  2. branches:
  3. only:
  4. - develop
  5. configuration:
  6. - Debug
  7. - Release
  8. cache:
  9. - deps -> cmake/ProjectLLVM.cmake
  10. before_build: |
  11. if not exist build mkdir build
  12. cd build
  13. cmake -G "Visual Studio 14 2015 Win64" ..
  14. build:
  15. project: c:/projects/evmjit/build/evmjit.sln
  16. parallel: true
  17. verbosity: minimal