diff options
Diffstat (limited to 'docs/markdown/snippets/jni-system-dep-modules.md')
-rw-r--r-- | docs/markdown/snippets/jni-system-dep-modules.md | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/docs/markdown/snippets/jni-system-dep-modules.md b/docs/markdown/snippets/jni-system-dep-modules.md deleted file mode 100644 index 1f2c567..0000000 --- a/docs/markdown/snippets/jni-system-dep-modules.md +++ /dev/null @@ -1,10 +0,0 @@ -## JNI System Dependency Modules - -The JNI system dependency now supports a `modules` keyword argument which is a -list containing any of the following: `jvm`, `awt`. - -```meson -jni_dep = dependency('jni', version: '>= 1.8.0', modules: ['jvm', 'awt']) -``` - -This will add appropriate linker arguments to your target. |