summaryrefslogtreecommitdiffstats
path: root/premake5.lua
diff options
context:
space:
mode:
authorwithmorten <morten.with@gmail.com>2021-07-12 23:36:37 +0200
committerwithmorten <morten.with@gmail.com>2021-07-12 23:36:37 +0200
commit6f0f9d7d695056575120ff49cc01297419c0d0e4 (patch)
tree44fec3bc4e383d0139432efc66d81acf97559e16 /premake5.lua
parentMerge branch 'miami' into lcs (diff)
parentfix premake (diff)
downloadre3-6f0f9d7d695056575120ff49cc01297419c0d0e4.tar
re3-6f0f9d7d695056575120ff49cc01297419c0d0e4.tar.gz
re3-6f0f9d7d695056575120ff49cc01297419c0d0e4.tar.bz2
re3-6f0f9d7d695056575120ff49cc01297419c0d0e4.tar.lz
re3-6f0f9d7d695056575120ff49cc01297419c0d0e4.tar.xz
re3-6f0f9d7d695056575120ff49cc01297419c0d0e4.tar.zst
re3-6f0f9d7d695056575120ff49cc01297419c0d0e4.zip
Diffstat (limited to '')
-rw-r--r--premake5.lua13
1 files changed, 7 insertions, 6 deletions
diff --git a/premake5.lua b/premake5.lua
index f8970b32..f6c31675 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -68,7 +68,7 @@ end
workspace "reLCS"
language "C++"
- configurations { "Debug", "Release", "Vanilla" }
+ configurations { "Debug", "Release" }
startproject "reLCS"
location "build"
symbols "Full"
@@ -86,7 +86,8 @@ workspace "reLCS"
linkoptions { "-fsanitize=address" }
end
- filter { "system:windows" }
+ filter { "system:windows" }
+ configurations { "Vanilla" }
platforms {
"win-x86-RW34_d3d8-mss",
"win-x86-librw_d3d9-mss",
@@ -130,9 +131,6 @@ workspace "reLCS"
flags { "LinkTimeOptimization" }
end
- filter "configurations:Vanilla"
- defines { "VANILLA_DEFINES" }
-
filter { "platforms:win*" }
system "windows"
@@ -324,7 +322,10 @@ project "reLCS"
includedirs { "vendor/ogg/include" }
includedirs { "vendor/opus/include" }
includedirs { "vendor/opusfile/include" }
- end
+ end
+
+ filter "configurations:Vanilla"
+ defines { "VANILLA_DEFINES" }
filter "platforms:*mss"
defines { "AUDIO_MSS" }