FindJava.cmake 455 B

12345678910111213141516171819202122
  1. #
  2. # This module finds if Java is installed and determines where the
  3. # include files and libraries are. This code sets the following
  4. # variables:
  5. #
  6. # JAVA_RUNTIME = the full path to the Java runtime
  7. # JAVA_COMPILE = the full path to the Java compiler
  8. # JAVA_ARCHIVE = the full path to the Java archiver
  9. #
  10. FIND_PROGRAM(JAVA_RUNTIME
  11. NAMES java
  12. )
  13. FIND_PROGRAM(JAVA_ARCHIVE
  14. NAMES jar
  15. )
  16. FIND_PROGRAM(JAVA_COMPILE
  17. NAMES javac
  18. )