Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
Signed-off-by: Martmists <martmists@gmail.com>
  • Loading branch information
Martmists-GH committed Jun 1, 2024
1 parent e80f448 commit d97e179
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ The KPy gradle plugin allows you to write Kotlin/Native code and use it from pyt

> Note: Modules built with KPy still require XCode when building on macOS, this is a Kotlin/Native limitation.
For issues and future plans, refer to the [KPy YouTrack](https://youtrack.martmists.com/issues/KPY)

## Features

### Implemented
Expand Down Expand Up @@ -33,7 +31,7 @@ kotlin {
val isMingwX64 = hostOs.startsWith("Windows")
// You can rename the target from `native` to something else,
// but make sure to also change setup.py to match this change!
// ARM targets are also supported, but I don't know how to test for them
// ARM targets are currently unsupported
val nativeTarget = when {
hostOs == "Mac OS X" -> macosX64("native")
hostOs == "Linux" -> linuxX64("native")
Expand Down
3 changes: 1 addition & 2 deletions kpy-processor/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import com.martmists.commons.martmistsPublish
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
Expand All @@ -24,7 +23,7 @@ tasks {
withType<KotlinCompile> {
dependsOn("generateBuildConfig")

kotlinOptions {
compilerOptions {
freeCompilerArgs = listOf("-Xcontext-receivers")
}
}
Expand Down

0 comments on commit d97e179

Please sign in to comment.