We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ab11ac commit 04caaa4Copy full SHA for 04caaa4
1 file changed
src/lime/tools/IOSHelper.hx
@@ -123,8 +123,14 @@ class IOSHelper
123
"-derivedDataPath",
124
"DerivedData"
125
];
126
-
127
- if (project.targetFlags.exists("simulator"))
+
+ //destination implies architecture, architecture must not also be specified
128
+ if(project.targetFlags.exists("destination"))
129
+ {
130
+ commands.push("-destination");
131
+ commands.push("id=" + project.targetFlags.get("destination"));
132
+ }
133
+ else if (project.targetFlags.exists("simulator"))
134
{
135
if (project.targetFlags.exists("i386") || project.targetFlags.exists("32") || project.targetFlags.exists("x86_32"))
136
0 commit comments