Add module that finds java executables. This module should find java, javac, and jar.
This commit is contained in:
parent
2a7e4539e6
commit
ab4e894b92
22
Modules/FindJava.cmake
Normal file
22
Modules/FindJava.cmake
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
#
|
||||||
|
# This module finds if Java is installed and determines where the
|
||||||
|
# include files and libraries are. This code sets the following
|
||||||
|
# variables:
|
||||||
|
#
|
||||||
|
# JAVA_RUNTIME = the full path to the Java runtime
|
||||||
|
# JAVA_COMPILE = the full path to the Java compiler
|
||||||
|
# JAVA_ARCHIVE = the full path to the Java archiver
|
||||||
|
#
|
||||||
|
|
||||||
|
FIND_PROGRAM(JAVA_RUNTIME
|
||||||
|
NAMES java
|
||||||
|
)
|
||||||
|
|
||||||
|
FIND_PROGRAM(JAVA_ARCHIVE
|
||||||
|
NAMES jar
|
||||||
|
)
|
||||||
|
|
||||||
|
FIND_PROGRAM(JAVA_COMPILE
|
||||||
|
NAMES javac
|
||||||
|
)
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user