Skip to content

Commit 8e9dee1

Browse files
committed
Fix feature resources
1 parent 6da4ffc commit 8e9dee1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

gradlePlugin/blueprint-configuration/src/main/kotlin/eu/upwolf/gradle/blueprint/configuration/feature/resource/FeatureResourceConfigurationPlugin.kt

+7
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,10 @@ class FeatureResourceConfigurationPlugin : Plugin<Project> {
127127
}
128128
}
129129
}
130+
131+
project.tasks.named("desktopProcessResources") {
132+
dependsOn("generateMRdesktopMain")
133+
}
130134
}
131135

132136
private fun setupIosTarget(project: Project) {
@@ -148,5 +152,8 @@ class FeatureResourceConfigurationPlugin : Plugin<Project> {
148152
}
149153
}
150154
}
155+
project.tasks.named("iosX64ProcessResources") {
156+
dependsOn("generateMRiosX64Main")
157+
}
151158
}
152159
}

0 commit comments

Comments
 (0)