mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-12 04:26:43 +00:00
25 lines
708 B
YAML
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')) |