summaryrefslogtreecommitdiffstats
path: root/premake5.lua
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-06-17 07:29:52 +0200
committerGitHub <noreply@github.com>2019-06-17 07:29:52 +0200
commitfcc6a8bc555b9aefebc51c8a479abadfad9c120a (patch)
treecc2c85e0ccf486546de22074639d0e8fbe032f65 /premake5.lua
parentfixed rebind bug (diff)
parentUpdate HUD stuff, bug and format fixes. (diff)
downloadre3-fcc6a8bc555b9aefebc51c8a479abadfad9c120a.tar
re3-fcc6a8bc555b9aefebc51c8a479abadfad9c120a.tar.gz
re3-fcc6a8bc555b9aefebc51c8a479abadfad9c120a.tar.bz2
re3-fcc6a8bc555b9aefebc51c8a479abadfad9c120a.tar.lz
re3-fcc6a8bc555b9aefebc51c8a479abadfad9c120a.tar.xz
re3-fcc6a8bc555b9aefebc51c8a479abadfad9c120a.tar.zst
re3-fcc6a8bc555b9aefebc51c8a479abadfad9c120a.zip
Diffstat (limited to '')
-rw-r--r--premake5.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/premake5.lua b/premake5.lua
index 49d0d502..cbd4c7f9 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -42,9 +42,9 @@ project "re3"
defines { "DEBUG" }
staticruntime "on"
symbols "On"
- 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\""
+ debugdir "$(GTA_III_RE_DIR)"
+ debugcommand "$(GTA_III_RE_DIR)/gta3.exe"
+ postbuildcommands "copy /y \"$(TargetPath)\" \"$(GTA_III_RE_DIR)\\plugins\\re3.dll\""
filter "configurations:Release"
defines { "NDEBUG" }
@@ -52,16 +52,16 @@ project "re3"
staticruntime "on"
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\""
+ postbuildcommands "copy /y \"$(TargetPath)\" \"$(GTA_III_RE_DIR)\\plugins\\re3.dll\""
filter "configurations:ReleaseFH"
defines { "NDEBUG" }
symbols "Full"
optimize "off"
staticruntime "on"
- debugdir "F:/Rockstar Games/GTAIII"
- debugcommand "F:/Rockstar Games/GTAIII/gta3.exe"
+ debugdir "$(GTA_III_DIR)"
+ debugcommand "$(GTA_III_DIR)/gta3.exe"
targetextension ".asi"
- targetdir "F:/Rockstar Games/GTAIII/scripts"
+ targetdir "$(GTA_III_DIR)/scripts"
filter "configurations:DebugCI"
defines { "DEBUG" }
symbols "On"