added proper platform for xcode (nw)

This commit is contained in:
Miodrag Milanovic 2016-02-21 21:03:22 +01:00
parent eff5fe54bc
commit 2043e6ce2d

View File

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