discord-rpc/appveyor.yml
2017-11-15 09:31:21 -08:00

30 lines
768 B
YAML

version: '{build}'
install:
- mkdir thirdparty
- cd thirdparty
- set CMAKE_URL="https://cmake.org/files/v3.8/cmake-3.8.0-win64-x64.zip"
- appveyor DownloadFile %CMAKE_URL% -FileName cmake.zip
- 7z x cmake.zip -o%cd% > nul
- move cmake-* cmake
- set PATH=%cd%\cmake\bin;%PATH%
- cmake --version
- cd ..
- python --version
- python -m pip install click
build_script:
- python --version
- python -m pip install click
- mkdir examples\unrealstatus\Plugins\discordrpc\Binaries\ThirdParty\discordrpcLibrary\Win64
- python build.py
artifacts:
- path: builds\win32-dynamic
name: win32-dynamic
- path: builds\win32-static
name: win32-static
- path: builds\win64-dynamic
name: win64-dynamic
- path: builds\win64-static
name: win64-static