File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
SKIE/skie-gradle/plugin/src/kgp_common/gradle_common/kotlin/co/touchlab/skie/plugin/util Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -129,10 +129,11 @@ sealed interface SkieTarget {
129129
130130 private companion object {
131131 fun linkTaskName (artifact : KotlinNativeArtifact , konanTarget : KonanTarget , buildType : NativeBuildType ): String {
132- return " assemble " + when (artifact) {
132+ return when (artifact) {
133133 is KotlinNativeLibrary -> {
134134 val kind = if (artifact.isStatic) NativeOutputKind .STATIC else NativeOutputKind .DYNAMIC
135135 lowerCamelCaseName(
136+ " assemble" ,
136137 artifact.artifactName,
137138 buildType.visibleName,
138139 kind.taskNameClassifier,
@@ -141,19 +142,22 @@ sealed interface SkieTarget {
141142 )
142143 }
143144 is KotlinNativeFramework -> lowerCamelCaseName(
145+ " assemble" ,
144146 artifact.artifactName,
145147 buildType.visibleName,
146148 NativeOutputKind .FRAMEWORK .taskNameClassifier,
147149 konanTarget.presetName
148150 )
149151 is KotlinNativeFatFramework -> lowerCamelCaseName(
152+ " assemble" ,
150153 artifact.artifactName,
151154 buildType.visibleName,
152155 NativeOutputKind .FRAMEWORK .taskNameClassifier,
153156 konanTarget.presetName,
154157 " ForFat" ,
155158 )
156159 is KotlinNativeXCFramework -> lowerCamelCaseName(
160+ " assemble" ,
157161 artifact.artifactName,
158162 buildType.visibleName,
159163 NativeOutputKind .FRAMEWORK .taskNameClassifier,
You can’t perform that action at this time.
0 commit comments