You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.5 KiB
64 lines
2.5 KiB
|
|
#environment:
|
|
# APPVEYOR_RDP_PASSWORD: Pa55word
|
|
|
|
environment:
|
|
matrix:
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
|
DEVENV_EXE: C:\"Program Files (x86)"\"Microsoft Visual Studio 12.0"\Common7\IDE\devenv.exe
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
DEVENV_EXE: C:\"Program Files (x86)"\"Microsoft Visual Studio 14.0"\Common7\IDE\devenv.exe
|
|
|
|
#init:
|
|
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
|
|
|
install:
|
|
- mkdir deps
|
|
- cd deps
|
|
# zlib
|
|
- curl -fsSL -o zlib.tar.gz https://github.com/madler/zlib/archive/v1.2.8.tar.gz
|
|
- 7z x zlib.tar.gz -so | 7z x -si -ttar > nul
|
|
- move zlib-1.2.8 zlib
|
|
- cd zlib
|
|
- cmake .
|
|
- cmake --build .
|
|
- cd ..
|
|
# libPNG
|
|
- curl -fsSL -o libpng.tar.gz http://prdownloads.sourceforge.net/libpng/libpng-1.6.28.tar.gz?download
|
|
- 7z x libpng.tar.gz -so | 7z x -si -ttar > nul
|
|
- move libpng-1.6.28 libpng
|
|
- cd libpng
|
|
- cmake . -DZLIB_INCLUDE_DIR=..\zlib -DZLIB_LIBRARY=..\zlib\debug\zlibstaticd.lib
|
|
- cmake --build .
|
|
- cd ..
|
|
# Berkeley DB - required by SASL
|
|
- curl -fsSL -o db-4.1.25.tar.gz http://download.oracle.com/berkeley-db/db-4.1.25.tar.gz
|
|
- 7z x db-4.1.25.tar.gz -so | 7z x -si -ttar > nul
|
|
- move db-4.1.25 db
|
|
- cd db\build_win32
|
|
- echo using devenv %DEVENV_EXE%
|
|
- '%DEVENV_EXE% db_dll.dsp /upgrade'
|
|
- msbuild /p:Configuration=Release db_dll.vcxproj
|
|
- cd ..\..
|
|
# Cyrus SASL
|
|
- curl -fsSL -o cyrus-sasl-2.1.26.tar.gz ftp://ftp.cyrusimap.org/cyrus-sasl/cyrus-sasl-2.1.26.tar.gz
|
|
- 7z x cyrus-sasl-2.1.26.tar.gz -so | 7z x -si -ttar > nul
|
|
- move cyrus-sasl-2.1.26 sasl
|
|
- cd sasl
|
|
- '"%vs120comntools%\VsDevCmd.bat"'
|
|
- nmake /f NTMakefile OPENSSL_INCLUDE=c:\OpenSSL-Win32\include OPENSSL_LIBPATH=c:\OpenSSL-Win32\lib DB_INCLUDE=c:\projects\libvncserver\deps\db\build_win32 DB_LIBPATH=c:\projects\libvncserver\deps\db\build_win32\release DB_LIB=libdb41.lib install
|
|
- cd ..
|
|
# go back to source root
|
|
- cd ..
|
|
|
|
build_script:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake .. -DZLIB_INCLUDE_DIR=..\deps\zlib -DZLIB_LIBRARY=..\deps\zlib\debug\zlibstaticd.lib -DPNG_PNG_INCLUDE_DIR=..\deps\libpng -DPNG_LIBRARY=..\deps\libpng\debug\libpng16_staticd.lib -D SASL2_INCLUDE_DIR=c:\cmu\include -D LIBSASL2_LIBRARIES=c:\cmu\lib\libsasl.lib ..
|
|
- cmake --build .
|
|
- ctest -C Debug --output-on-failure
|
|
|
|
#on_finish:
|
|
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
|
|