Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
AppVeyor
  • Loading branch information
Filip Gawin committed May 19, 2019
1 parent c4f9b95 commit 9b78f232e550a597b595afc0afa0884272f103a9
Showing with 20 additions and 1 deletion.
  1. +15 −0 .appveyor.yml
  2. +5 −1 premake5.lua
@@ -0,0 +1,15 @@
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
@@ -1,5 +1,5 @@
workspace "re3"
configurations { "Release","Debug" }
configurations { "ReleaseCI", "Release", "Debug" }
location "build"

files { "src/*.*" }
@@ -41,3 +41,7 @@ project "re3"
debugdir "C:/Users/aap/games/gta3_re"
debugcommand "C:/Users/aap/games/gta3_re/gta3.exe"
postbuildcommands "copy /y \"$(TargetPath)\" \"C:\\Users\\aap\\games\\gta3_re\\plugins\\re3.dll\""
filter "configurations:ReleaseCI"
defines { "NDEBUG" }
optimize "On"
flags { "StaticRuntime" }

0 comments on commit 9b78f23

Please sign in to comment.