diff options
author | 2016-02-21 21:03:22 +0100 | |
---|---|---|
committer | 2016-02-21 21:03:22 +0100 | |
commit | 2043e6ce2dcdda91b1c212bfff8e44bad6e88f36 (patch) | |
tree | 3334a10cbac97f835b0d84c018aaa74cc30ed33a /scripts/genie.lua | |
parent | eff5fe54bc5e4147df3e53e36ad397682c1e8bb8 (diff) |
added proper platform for xcode (nw)
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 16 |
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++" |