File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,10 @@ find_program(CMAKE_Java_COMPILER NAMES javac PATHS ${BOOT_JDK}/bin NO_DEFAULT_PA
35
35
find_program (CMAKE_Java_RUNTIME NAMES java PATHS ${BOOT_JDK} /bin NO_DEFAULT_PATH)
36
36
find_program (CMAKE_Java_AR NAMES jar PATHS ${BOOT_JDK} /bin NO_DEFAULT_PATH)
37
37
38
+ # Variables used by the "UseJava" module (predates "Java" language support)
38
39
set (Java_JAVA_EXECUTABLE ${CMAKE_Java_RUNTIME} )
40
+ set (Java_JAVAC_EXECUTABLE ${CMAKE_Java_COMPILER} )
41
+ set (Java_JAR_EXECUTABLE ${CMAKE_Java_AR} )
39
42
40
43
# Note: this is a temporary transition variable.
41
44
set (J9VM_IS_NON_STAGING TRUE )
Original file line number Diff line number Diff line change 23
23
# set JAVA_HOME to guide FindJava
24
24
set (JAVA_HOME ${BOOT_JDK} )
25
25
26
- include (FindJava)
27
26
include (UseJava)
28
27
29
28
project (j9_sourcetools VERSION 1.0)
You can’t perform that action at this time.
0 commit comments