summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilip Gawin <filip.gawin@zoho.com>2020-04-15 00:57:45 +0200
committerGitHub <noreply@github.com>2020-04-15 00:57:45 +0200
commit25841cb9b3996451213c3bf353fc1bfb8f5a5f4b (patch)
tree5fbbf24044ac3c76113ec2308412a2277dc177aa
parentCollect pdb file on CI (diff)
downloadre3-25841cb9b3996451213c3bf353fc1bfb8f5a5f4b.tar
re3-25841cb9b3996451213c3bf353fc1bfb8f5a5f4b.tar.gz
re3-25841cb9b3996451213c3bf353fc1bfb8f5a5f4b.tar.bz2
re3-25841cb9b3996451213c3bf353fc1bfb8f5a5f4b.tar.lz
re3-25841cb9b3996451213c3bf353fc1bfb8f5a5f4b.tar.xz
re3-25841cb9b3996451213c3bf353fc1bfb8f5a5f4b.tar.zst
re3-25841cb9b3996451213c3bf353fc1bfb8f5a5f4b.zip
-rw-r--r--premake5.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/premake5.lua b/premake5.lua
index 4ec2eca1..173fe3e4 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -94,13 +94,14 @@ project "re3"
filter "configurations:Debug"
defines { "DEBUG" }
staticruntime "on"
- symbols "On"
+ symbols "Full"
setpaths("$(GTA_III_RE_DIR)/", "gta3.exe", "plugins/")
filter "configurations:Release"
defines { "NDEBUG" }
optimize "On"
staticruntime "on"
+ symbols "Full"
setpaths("$(GTA_III_RE_DIR)/", "gta3.exe", "plugins/")
filter "configurations:ReleaseFH"