tahoma2d/appveyor.yml

45 lines
1.2 KiB
YAML
Raw Normal View History

2018-01-24 22:27:26 +13:00
version: 1.2.0.{build}
2016-07-20 15:43:33 +12:00
pull_requests:
do_not_increment_build_number: true
skip_tags: true
2017-10-13 01:43:12 +13:00
image: Visual Studio 2015
2016-07-20 15:43:33 +12:00
configuration:
- Debug
- Release
platform: x64
clone_depth: 1
2018-03-14 00:06:03 +13:00
# C:\Qt\5.9 is mapped to C:\Qt\5.9.n for backward compatibility
2016-07-20 15:43:33 +12:00
install:
- cmd: >-
cd thirdparty
copy /Y LibJPEG\jpeg-9\jconfig.vc LibJPEG\jpeg-9\jconfig.h
copy /Y tiff-4.0.3\libtiff\tif_config.vc.h tiff-4.0.3\libtiff\tif_config.h
copy /Y tiff-4.0.3\libtiff\tiffconf.vc.h tiff-4.0.3\libtiff\tiffconf.h
copy /Y libpng-1.6.21\scripts\pnglibconf.h.prebuilt libpng-1.6.21\pnglibconf.h
cd ../toonz
mkdir %PLATFORM% && cd %PLATFORM%
2018-03-14 00:06:03 +13:00
cmake ..\sources -G "Visual Studio 14 2015 Win64" -DQT_PATH="C:\Qt\5.9\msvc2015_64" -DBOOST_ROOT="C:\Libraries\boost_1_60_0"
2016-07-20 15:43:33 +12:00
build:
project: $(APPVEYOR_BUILD_FOLDER)\toonz\$(PLATFORM)\ALL_BUILD.vcxproj
parallel: true
verbosity: minimal
after_build:
- cmd: >-
2018-03-14 00:06:03 +13:00
C:\Qt\5.9\msvc2015_64\bin\windeployqt.exe %CONFIGURATION%\OpenToonz_1.2.exe
2016-07-20 15:43:33 +12:00
copy /Y ..\..\thirdparty\glut\3.7.6\lib\glut64.dll %CONFIGURATION%
copy /Y ..\..\thirdparty\glew\glew-1.9.0\bin\64bit\glew32.dll %CONFIGURATION%
artifacts:
- path: toonz\$(PLATFORM)\$(CONFIGURATION)
name: OpenToonz_1.2
2016-08-06 03:16:16 +12:00