dotherside/appveyor.yml
Filippo Cucchetto d5e6ced1eb App vejor fixes
2016-04-10 14:40:00 +02:00

25 lines
708 B
YAML

clone_depth: 5
environment:
matrix:
- CMAKE_GENERATOR: "Visual Studio 12 2013 Win64"
QTDIR: "C:/Qt/5.3/msvc2013_64_opengl/bin"
CMAKE_PREFIX_PATH: "C:/Qt/5.3/msvc2013_64_opengl/lib/cmake"
CONFIGURATION: Release
TEST_DIR: "test/Release/"
install:
- set PATH=%PATH%;%QTDIR%
build_script:
- mkdir build && cd build
- cmake .. -G"%CMAKE_GENERATOR%" -DCMAKE_PREFIX_PATH=%CMAKE_PREFIX_PATH%
- cmake --build . --config %CONFIGURATION%
test_script:
- cd test\Release
- echo %PATH%
- TestDynamicQObject.exe
on_finish:
- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))