From b3935a8ee874bead9a43f5dc00c2236be05fd7b1 Mon Sep 17 00:00:00 2001 From: Nikolay Igotti Date: Tue, 27 Sep 2016 17:36:57 +0300 Subject: [PATCH] Added README --- experiments/backend.native/README.md | 10 ++++++++++ experiments/backend.native/compiler/build.gradle | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 experiments/backend.native/README.md 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'