aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--premake5.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua
index 36d1f24..555263e 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -1,6 +1,7 @@
-- A solution contains projects, and defines the available configurations
solution "brotli"
configurations { "Release", "Debug" }
+platforms { "x64", "x86" }
targetdir "bin"
location "buildfiles"
flags "RelativeLinks"
@@ -13,6 +14,12 @@ filter "configurations:Release"
filter "configurations:Debug"
flags { "Symbols" }
+filter { "platforms:x64" }
+ architecture "x86_64"
+
+filter { "platforms:x86" }
+ architecture "x86"
+
configuration { "gmake" }
buildoptions { "-Wall -fno-omit-frame-pointer" }
location "buildfiles/gmake"