Finds the Java Native Interface (JNI) include directories and libraries.
JNI enables Java code running in a Java Virtual Machine (JVM) or Dalvik Virtual Machine (DVM) on Android to call and be called by native applications and libraries written in other languages such as C and C++.
This module finds if Java is installed and determines where the include files and libraries are. It also determines what the name of the library is.
Added in version 3.24: Imported targets, components, and Android NDK support.
When using Android NDK, the corresponding package version is reported and a
specific release can be requested. At Android API level 31 and above, the
additional NativeHelper component can be requested. NativeHelper is
also exposed as an implicit dependency of the JVM component (only if this
does not cause a conflict) which provides a uniform access to JVM functions.
This module supports optional components, which can be specified with the
find_package() command:
find_package(JNI [COMPONENTS <components>...])
Supported components include:
AWTAdded in version 3.24.
Finds the Java Abstract Window Toolkit (AWT).
JVMAdded in version 3.24.
Finds the Java Virtual Machine (JVM).
NativeHelperAdded in version 3.24.
Finds the NativeHelper library on Android (libnativehelper.so), which
exposes JVM functions such as JNI_CreateJavaVM().
If no components are specified, the module defaults are:
When targeting Android with API level 31 and above: module looks for the
NativeHelper component. For other Android API levels, components are by
default not set.
When targeting other systems: module looks for AWT and JVM components.
This module provides the following Imported Targets:
JNI::JNIAdded in version 3.24.
Main target encapsulating all JNI usage requirements, available if jni.h
is found.
JNI::AWTAdded in version 3.24.
Target encapsulating the Java AWT Native Interface (JAWT) library usage
requirements, available if the AWT component is found.
JNI::JVMAdded in version 3.24.
Target encapsulating the Java Virtual Machine (JVM) library usage
requirements, available if component JVM is found.
JNI::NativeHelperAdded in version 3.24.
Target encapsulating the NativeHelper library usage requirements, available when targeting Android API level 31 and above, and the library is found.
This module defines the following variables:
JNI_FOUNDBoolean indicating whether the JNI is found.
JNI_<component>_FOUNDAdded in version 3.24.
Boolean indicating whether the <component> is found.
JNI_VERSIONFull Android NDK package version (including suffixes such as -beta3 and
-rc1) or undefined otherwise.
JNI_VERSION_MAJORAdded in version 3.24.
Android NDK major version or undefined otherwise.
JNI_VERSION_MINORAdded in version 3.24.
Android NDK minor version or undefined otherwise.
JNI_VERSION_PATCHAdded in version 3.24.
Android NDK patch version or undefined otherwise.
JNI_INCLUDE_DIRSThe include directories needed to use the JNI.
JNI_LIBRARIESThe libraries (JAWT and JVM) needed to link against to use JNI.
The following cache variables are also available to set or use:
JAVA_INCLUDE_PATHThe directory containing the jni.h header.
JAVA_INCLUDE_PATH2The directory containing machine-dependent headers jni_md.h and
jniport.h. This variable is defined only if jni.h depends on one of
these headers. In contrast, Android NDK jni.h can be typically used
standalone.
JAVA_AWT_INCLUDE_PATHThe directory containing the jawt.h header.
JAVA_AWT_LIBRARYThe path to the Java AWT Native Interface (JAWT) library.
JAVA_JVM_LIBRARYThe path to the Java Virtual Machine (JVM) library.
This module accepts the following variables:
JAVA_HOMEThe caller can set this variable to specify the installation directory of Java explicitly.
Finding JNI and linking it to a project target:
find_package(JNI)
target_link_libraries(project_target PRIVATE JNI::JNI)
Finding JNI with AWT component specified and linking them to a project target:
find_package(JNI COMPONENTS AWT)
target_link_libraries(project_target PRIVATE JNI::JNI JNI::AWT)
A more common way to use Java and JNI in CMake is to use a dedicated
UseJava module:
find_package(Java)
find_package(JNI)
include(UseJava)