We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3229cfb commit c21a2fdCopy full SHA for c21a2fd
pkgs/jni/CHANGELOG.md
@@ -11,6 +11,7 @@
11
`Iterable`.
12
- Added `JObject.isA`, which checks whether a `JObject` is a instance of a
13
java class.
14
+- Do not require JWT when building for desktop.
15
16
## 0.13.0
17
pkgs/jni/src/CMakeLists.txt
@@ -29,8 +29,7 @@ if (ANDROID)
29
target_link_libraries(jni log)
30
target_link_options(jni PRIVATE "-Wl,-z,max-page-size=16384")
31
else()
32
- find_package(Java REQUIRED)
33
- find_package(JNI REQUIRED)
+ find_package(JNI REQUIRED COMPONENTS JVM)
34
include_directories(${JNI_INCLUDE_DIRS})
35
target_link_libraries(jni ${JNI_LIBRARIES})
36
endif()
0 commit comments