summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/genie.lua
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-02-21 21:03:22 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-02-21 21:03:22 +0100
commit2043e6ce2dcdda91b1c212bfff8e44bad6e88f36 (patch)
tree3334a10cbac97f835b0d84c018aaa74cc30ed33a /scripts/genie.lua
parenteff5fe54bc5e4147df3e53e36ad397682c1e8bb8 (diff)
added proper platform for xcode (nw)
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r--scripts/genie.lua16
1 files changed, 11 insertions, 5 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua
index e327b988abd..02259293cbe 100644
--- a/scripts/genie.lua
+++ b/scripts/genie.lua
@@ -444,11 +444,17 @@ configurations {
"Release",
}
-platforms {
- "x32",
- "x64",
- "Native", -- for targets where bitness is not specified
-}
+if _ACTION == "xcode4" then
+ platforms {
+ "Universal",
+ }
+else
+ platforms {
+ "x32",
+ "x64",
+ "Native", -- for targets where bitness is not specified
+ }
+end
language "C++"