Skip to content

Commit

Permalink
#535 highlight js and apple generator problem
Browse files Browse the repository at this point in the history
  • Loading branch information
ExNDY committed Nov 28, 2023
1 parent b512ac8 commit 4fe55fa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ class AppleMRGenerator(
assetsGenerationDir.mkdirs()
}

//TODO: Вынести на этап конфигурации
private fun setupKLibResources(generationTask: GenerateMultiplatformResourcesTask) {
val compileTask: TaskProvider<KotlinNativeCompile> = compilation.compileTaskProvider

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ class JsMRGenerator(
// )
}

//TODO: Вынести на этап конфигурации
private fun setupKLibResources(generationTask: Task) {
val taskProvider = compilation.compileTaskProvider
taskProvider.configure { compileTask ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ abstract class GenerateMultiplatformResourcesTask : DefaultTask() {
// return JsMRGenerator(
// project = project,
// settings = settings,
// compilation = , //TODO: Research implementation
// compilation = compilationJs.get(),
// generators = generators.map {
// it.createJsGenerator()
// }
Expand Down Expand Up @@ -230,7 +230,7 @@ abstract class GenerateMultiplatformResourcesTask : DefaultTask() {
// generators = generators.map {
// it.createIosGenerator()
// },
// compilation = ,
// compilation = compilationApple.get(),
// )
}
}

0 comments on commit 4fe55fa

Please sign in to comment.