Skip to content

Commit

Permalink
Formatting and add FIXMEs
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis committed Oct 4, 2023
1 parent 0a313d6 commit db29dcd
Showing 1 changed file with 25 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,37 +98,38 @@ fun Project.configureKmpTargets() {
}

withIf(!COMMON_JVM_ONLY, kmpExt) {
// FIXME - configure JS
// if (hasJs) {
// js(KotlinJsCompilerType.IR) {
// nodejs()
// }
// }

// if (hasApple) {
// macosX64()
// macosArm64()
// ios()
// watchos()
// tvos()
// }
// FIXME Configure JS
// if (hasJs) {
// js(KotlinJsCompilerType.IR) { nodejs() }
// }

// FIXME Configure Apple
// if (hasApple) {
// macosX64()
// macosArm64()
// ios()
// watchos()
// tvos()
// }

if (hasLinux) {
linuxX64()
// FIXME - okio missing arm64 target support
// linuxArm64()
// FIXME - Okio missing arm64 target support
// linuxArm64()
}

// if (hasWindows) {
// mingwX64()
// }
//
// FIXME Configure Windows
// if (hasWindows) {
// mingwX64()
// }

if (hasDesktop) {
linuxX64()
// linuxArm64()
// mingwX64()
// macosX64()
// macosArm64()
// FIXME Configure desktop
// linuxArm64()
// mingwX64()
// macosX64()
// macosArm64()
}
}

Expand Down

0 comments on commit db29dcd

Please sign in to comment.