blob: 4fae54e4e0020e7d2cdb47e3b05b26cd45a023c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#
# 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
)
MARK_AS_ADVANCED(
JAVA_RUNTIME
JAVA_ARCHIVE
JAVA_COMPILE
)
|