diff options
author | aap <aap@papnet.eu> | 2019-05-22 20:58:38 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-05-22 20:58:38 +0200 |
commit | 555b70a0b652fff099d1e878b9551a618ac0e3d2 (patch) | |
tree | 12592bc0ab006c8ca1567edbaf91ae9e18f2cfc5 /.appveyor.yml | |
parent | added CFont (diff) | |
parent | Merge pull request #1 from ShFil119/appveyor (diff) | |
download | re3-555b70a0b652fff099d1e878b9551a618ac0e3d2.tar re3-555b70a0b652fff099d1e878b9551a618ac0e3d2.tar.gz re3-555b70a0b652fff099d1e878b9551a618ac0e3d2.tar.bz2 re3-555b70a0b652fff099d1e878b9551a618ac0e3d2.tar.lz re3-555b70a0b652fff099d1e878b9551a618ac0e3d2.tar.xz re3-555b70a0b652fff099d1e878b9551a618ac0e3d2.tar.zst re3-555b70a0b652fff099d1e878b9551a618ac0e3d2.zip |
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 00000000..6e9b3867 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,17 @@ +image: Visual Studio 2017 +configuration: ReleaseCI +platform: + - Win32 +environment: + APPVEYOR_SAVE_CACHE_ON_ERROR: true +install: + - set PATH=%APPVEYOR_BUILD_FOLDER%/bin;%PATH% +before_build: + - mkdir "%APPVEYOR_BUILD_FOLDER%/build" + - cd "%APPVEYOR_BUILD_FOLDER%" + - premake5.exe vs2015 +build: + project: c:\projects\re3\build\re3.sln + verbosity: minimal +artifacts: + - path: bin/ReleaseCI/re3.dll |