diff --git a/experiments/backend.native/README.md b/experiments/backend.native/README.md new file mode 100644 index 00000000000..337aadf5e4d --- /dev/null +++ b/experiments/backend.native/README.md @@ -0,0 +1,10 @@ +# Kotlin-native backend # + +## Build + +To build just use: + + gradle dist ; may fail in JS + gradle :backend.native:cli.bc:run + +And it will run simple example (currently prints out IR of test file). diff --git a/experiments/backend.native/compiler/build.gradle b/experiments/backend.native/compiler/build.gradle index 02f67980c44..0d5bec44cf2 100644 --- a/experiments/backend.native/compiler/build.gradle +++ b/experiments/backend.native/compiler/build.gradle @@ -4,8 +4,8 @@ buildscript { mavenCentral() } dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.3" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } apply plugin: 'java' -apply plugin: 'kotlin' \ No newline at end of file +apply plugin: 'kotlin'