File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ Compiler.prototype.calculateDirectories = function() {
34
34
case 'test' :
35
35
this . configuration = "Debug" ;
36
36
this . iosSdk = "iphonesimulator" ;
37
+ this . iosDestination = "platform=iOS Simulator,name=iPhone 6s,OS=latest"
37
38
break ;
38
39
case 'staging' :
39
40
this . configuration = "Staging" ;
@@ -93,6 +94,7 @@ Compiler.prototype.buildIos = function() {
93
94
to_run += " -workspace " + this . platformDirectory + "/Sample.xcworkspace" ;
94
95
to_run += " -scheme \"" + scheme + "\"" ;
95
96
to_run += " -sdk " + this . iosSdk ;
97
+ if ( this . iosDestination ) to_run += " -destination '" + this . iosDestination + "'" ;
96
98
to_run += " -configuration " + this . configuration ;
97
99
to_run += " OBJROOT=" + this . buildDirectory ;
98
100
to_run += " SYMROOT=" + this . buildDirectory ;
You can’t perform that action at this time.
0 commit comments