mirror of
https://github.com/yuzu-emu/discord-rpc
synced 2024-11-22 10:43:41 +00:00
Create Appveyor config for automated CI testing
This commit is contained in:
parent
b206dd44f0
commit
364606f7e9
1 changed files with 29 additions and 0 deletions
29
appveyor.yml
Normal file
29
appveyor.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
version: '{build}'
|
||||
install:
|
||||
- cmd: >-
|
||||
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 ..
|
||||
build_script:
|
||||
- cmd: >-
|
||||
mkdir build
|
||||
|
||||
cd build
|
||||
|
||||
cmake .. -DCMAKE_INSTALL_PREFIX="C:\Program Files (x86)\DiscordRPC"
|
||||
|
||||
cmake --build . --config Release --target install
|
Loading…
Reference in a new issue