aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-05-16 23:45:28 -0700
committerJakob Odersky <jakob@odersky.com>2016-05-16 23:45:28 -0700
commitf1493a63d6bea1fca1c1f77e0277c7f0080d6fd1 (patch)
treedac5c8eabcad3b063d33f71f1758c499f66c21cf
parent10c9c992427e18f43106d3a56aedba5e46f780fa (diff)
downloadsbt-jni-f1493a63d6bea1fca1c1f77e0277c7f0080d6fd1.tar.gz
sbt-jni-f1493a63d6bea1fca1c1f77e0277c7f0080d6fd1.tar.bz2
sbt-jni-f1493a63d6bea1fca1c1f77e0277c7f0080d6fd1.zip
Update readme
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c4a7289..68e2d14 100644
--- a/README.md
+++ b/README.md
@@ -134,7 +134,7 @@ This plugin packages native libraries produced by JniNative in a way that they c
```scala
lazy val core = project in file("myproject-core"). // regular scala code with @native methods
- dependsOn(native % Runtime) // natives only required for running, compilation can be done without
+ dependsOn(native % Runtime) // remove this if `core` is a library, leave choice to end-user
lazy val native = project in file("myproject-native"). // native code and build script
enablePlugin(JniNative) // JniNative needs to be explicitly enabled