diff options
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | appveyor.yml | 28 |
2 files changed, 30 insertions, 1 deletions
@@ -1,7 +1,8 @@ Quackle  ======= -[](http://travis-ci.org/quackle/quackle) +[](http://travis-ci.org/quackle/quackle) +[](https://ci.appveyor.com/project/jfultz/quackle/branch/master) Crossword game artificial intelligence and analysis tool. diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..1d88259 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,28 @@ +version: '{build}' + +environment: + matrix: + - APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017" + QMAKE: C:\Qt\5.9\msvc2017_64\bin\qmake.exe + VCVARS_SCRIPT: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\VC\\Auxiliary\\Build\\vcvarsall.bat" + VCVARS_PLATFORM: amd64 + - APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2015" + QMAKE: C:\Qt\5.9\msvc2015\bin\qmake.exe + VCVARS_SCRIPT: "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat" + VCVARS_PLATFORM: x86 + +init: + - cmd: | + "%VCVARS_SCRIPT%" %VCVARS_PLATFORM% + %QMAKE% --version + +build_script: +- cmd: | + %QMAKE% + nmake /nologo release + cd quackleio + %QMAKE% + nmake /nologo release + cd ../quacker + %QMAKE% + nmake /nologo release |