FindJava

查找 Java

此模块查找是否安装了 Java,并确定头文件和库的位置。调用者可以设置变量 JAVA_HOME 以显式指定 Java 安装前缀。

另请参阅 FindJNI 模块以查找 Java 本地接口 (JNI)。

3.10 版本新增: 新增对 Java 9+ 版本解析的支持。

当您调用此查找模块时,请指定以下一个或多个组件。请参见以下示例。

Runtime     = Java Runtime Environment used to execute Java byte-compiled applications
Development = Development tools (java, javac, javah, jar and javadoc), includes Runtime component
IdlJ        = Interface Description Language (IDL) to Java compiler
JarSigner   = Signer and verifier tool for Java Archive (JAR) files

此模块设置以下结果变量

Java_JAVA_EXECUTABLE      = the full path to the Java runtime
Java_JAVAC_EXECUTABLE     = the full path to the Java compiler
Java_JAVAH_EXECUTABLE     = the full path to the Java header generator
Java_JAVADOC_EXECUTABLE   = the full path to the Java documentation generator
Java_IDLJ_EXECUTABLE      = the full path to the Java idl compiler
Java_JAR_EXECUTABLE       = the full path to the Java archiver
Java_JARSIGNER_EXECUTABLE = the full path to the Java jar signer
Java_VERSION_STRING       = Version of java found, eg. 1.6.0_12
Java_VERSION_MAJOR        = The major version of the package found.
Java_VERSION_MINOR        = The minor version of the package found.
Java_VERSION_PATCH        = The patch version of the package found.
Java_VERSION_TWEAK        = The tweak version of the package found (after '_')
Java_VERSION              = This is set to: $major[.$minor[.$patch[.$tweak]]]

3.4 版本新增: 新增了 Java_IDLJ_EXECUTABLEJava_JARSIGNER_EXECUTABLE 变量。

可以使用 find_package() 语法指定所需的 Java 最低版本,例如:

find_package(Java 1.8)

注意:${Java_VERSION}${Java_VERSION_STRING} 不保证完全相同。例如,某些 Java 版本可能返回:Java_VERSION_STRING = 1.8.0_17Java_VERSION = 1.8.0.17

另一个例子是 Java OEM,例如:Java_VERSION_STRING = 1.8.0-oemJava_VERSION = 1.8.0

对于这些组件,将设置以下变量

Java_FOUND                    - TRUE if all components are found.
Java_<component>_FOUND        - TRUE if <component> is found.

用法示例

find_package(Java)
find_package(Java 1.8 REQUIRED)
find_package(Java COMPONENTS Runtime)
find_package(Java COMPONENTS Development)