Aegisub/appveyor.yml

36 lines
1.5 KiB
YAML
Raw Normal View History

2019-12-28 21:20:46 +01:00
image: Visual Studio 2019
2019-12-28 22:00:53 +01:00
environment:
2019-12-28 22:16:27 +01:00
WXWIN: '%APPVEYOR_BUILD_FOLDER%\wxWidgets'
2019-12-28 22:43:11 +01:00
ICUWIN: '%APPVEYOR_BUILD_FOLDER%\icu'
2019-12-28 22:00:53 +01:00
2019-12-28 21:20:46 +01:00
install:
# Set paths to dependencies (based on architecture)
2019-12-28 21:31:18 +01:00
- cmd: set PYTHON_ROOT=C:\python37-x64
2019-12-28 21:20:46 +01:00
# Add necessary paths to PATH variable
- cmd: set PATH=%cd%;%PYTHON_ROOT%;%PYTHON_ROOT%\Scripts;%PATH%
# Install meson and ninja
- cmd: pip install ninja meson
2019-12-28 22:00:53 +01:00
# download wxWidgets
2019-12-28 22:02:37 +01:00
- cmd: mkdir %WXWIN%
2019-12-28 22:00:53 +01:00
- cmd: chdir %WXWIN%
- cmd: curl -L -o wxWidgets.7z https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.3/wxWidgets-3.1.3.7z
- cmd: 7z x wxWidgets.7z
# build wxWidgets
2019-12-28 22:14:58 +01:00
- cmd: msbuild /m %WXWIN%\build\msw\wx_vc16.sln "/p:Configuration=DLL Release;Platform=Win32;PlatformToolset=v142" /target:adv,base,core,html,net,qa,wxexpat,wxjpeg,wxpng,wxtiff,wxzlib,xml /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
2019-12-28 22:43:11 +01:00
# Download ICU
- cmd: mkdir %ICUWIN%
- cmd: chdir %ICUWIN%
- cmd: curl -L -o icu.zip https://github.com/unicode-org/icu/releases/download/release-65-1/icu4c-65_1-src.zip
- cmd: 7z x icu.zip
# build ICU
2019-12-28 22:59:05 +01:00
- cmd: msbuild /m %ICUWIN%\icu\source\allinone\allinone.sln
2019-12-28 21:20:46 +01:00
# Set up the build environment
2019-12-28 21:41:52 +01:00
- cmd: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64'
2019-12-28 21:44:48 +01:00
- cmd: set BOOST_ROOT=C:\Libraries\boost_1_71_0
2019-12-28 21:20:46 +01:00
build_script:
2019-12-28 22:59:05 +01:00
- cmd: meson --backend=ninja -Dwx_path=%WXWIN% -Dicu_path=%ICUWIN%\icu builddir
2019-12-28 22:26:39 +01:00
- cmd: ninja -C builddir
2019-12-28 21:20:46 +01:00