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++"