diff options
author | withmorten <morten.with@gmail.com> | 2021-07-12 04:13:42 +0200 |
---|---|---|
committer | withmorten <morten.with@gmail.com> | 2021-07-12 04:24:10 +0200 |
commit | f50026828ad3bfb656496b3321b8e6b5c71fc7b1 (patch) | |
tree | 194bd18f6d30fdc2a58433946fe03e2c2096cb66 /premake5.lua | |
parent | fix (diff) | |
download | re3-f50026828ad3bfb656496b3321b8e6b5c71fc7b1.tar re3-f50026828ad3bfb656496b3321b8e6b5c71fc7b1.tar.gz re3-f50026828ad3bfb656496b3321b8e6b5c71fc7b1.tar.bz2 re3-f50026828ad3bfb656496b3321b8e6b5c71fc7b1.tar.lz re3-f50026828ad3bfb656496b3321b8e6b5c71fc7b1.tar.xz re3-f50026828ad3bfb656496b3321b8e6b5c71fc7b1.tar.zst re3-f50026828ad3bfb656496b3321b8e6b5c71fc7b1.zip |
Diffstat (limited to '')
-rw-r--r-- | premake5.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/premake5.lua b/premake5.lua index 72ff4d09..82e985f7 100644 --- a/premake5.lua +++ b/premake5.lua @@ -68,7 +68,7 @@ end workspace "re3"
language "C++"
- configurations { "Debug", "Release", "Vanilla" }
+ configurations { "Debug", "Release" }
startproject "re3"
location "build"
symbols "Full"
@@ -80,6 +80,7 @@ workspace "re3" end
filter { "system:windows" }
+ configurations { "Vanilla" }
platforms {
"win-x86-RW33_d3d8-mss",
"win-x86-librw_d3d9-mss",
@@ -123,9 +124,6 @@ workspace "re3" flags { "LinkTimeOptimization" }
end
- filter "configurations:Vanilla"
- defines { "VANILLA_DEFINES" }
-
filter { "platforms:win*" }
system "windows"
@@ -305,6 +303,9 @@ project "re3" includedirs { "src/weapons" }
includedirs { "src/extras" }
+ filter "configurations:Vanilla"
+ defines { "VANILLA_DEFINES" }
+
if(not _OPTIONS["no-git-hash"]) then
defines { "USE_OUR_VERSIONING" }
end
|