Skip to content

Commit

Permalink
MOE seems to be working!
Browse files Browse the repository at this point in the history
I can't test without an available Mac device, but at least the project imports, the custom.xcconfig is created by the Gradle tasks this now runs at startup, and things all seem smooth.
  • Loading branch information
tommyettinger committed Oct 17, 2024
1 parent ed85285 commit 096bde1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/main/java/gdx/liftoff/ui/dialogs/PlatformsDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,11 @@ private CheckBox addPlatform(Table table, String platformName, String descriptio
if(checkBox.isChecked() && "ios".equals(platformName) && !"7".equals(UserData.javaVersion)){
UserData.javaVersion = "8";
}
if(checkBox.isChecked() && "ios-moe".equals(platformName)){
UserData.gradleTasks = UserData.gradleTasks == null
? "ios-moe:moeUpdateXcodeSettings \nios-moe:copyNatives \n"
: "ios-moe:moeUpdateXcodeSettings \nios-moe:copyNatives \n" + UserData.gradleTasks;
}
});

Label label = new Label(description, skin, "description");
Expand Down

This file was deleted.

0 comments on commit 096bde1

Please sign in to comment.