Skip to content

Commit

Permalink
Adds packageIosSimulatorDebug and variants (#2289)
Browse files Browse the repository at this point in the history
  • Loading branch information
soywiz authored Aug 27, 2024
1 parent 1f8fd41 commit 851c4ce
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions buildSrc/src/main/kotlin/korlibs/korge/gradle/targets/ios/Ios.kt
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,17 @@ fun Project.configureNativeIosTvosRun(targetName: String) {
}
}

// packageIosSimulatorDebug
// packageIosDeviceDebug
// packageIosSimulatorRelease
// packageIosDeviceRelease
for (Kind in listOf("Simulator", "Device")) {
val packageIos = tasks.createThis<Task>("package${targetNameCapitalized}$Kind$debugSuffix") {
group = GROUP_KORGE_PACKAGE
dependsOn("${targetName}Build$Kind$debugSuffix")
}
}

val installIosTvosDevice = tasks.createThis<Task>("install${targetNameCapitalized}Device$debugSuffix") {
group = GROUP_KORGE_INSTALL
val buildTaskName = "${targetName}BuildDevice$debugSuffix"
Expand Down

0 comments on commit 851c4ce

Please sign in to comment.