CMakeFindJavaCommon.cmake 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #=============================================================================
  2. # Copyright 2013-2014 Kitware, Inc.
  3. #
  4. # Distributed under the OSI-approved BSD License (the "License");
  5. # see accompanying file Copyright.txt for details.
  6. #
  7. # This software is distributed WITHOUT ANY WARRANTY; without even the
  8. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. # See the License for more information.
  10. #=============================================================================
  11. # (To distribute this file outside of CMake, substitute the full
  12. # License text for the above reference.)
  13. # Do not include this module directly from code outside CMake!
  14. set(_JAVA_HOME "")
  15. if(JAVA_HOME AND IS_DIRECTORY "${JAVA_HOME}")
  16. set(_JAVA_HOME "${JAVA_HOME}")
  17. set(_JAVA_HOME_EXPLICIT 1)
  18. else()
  19. set(_ENV_JAVA_HOME "")
  20. if(DEFINED ENV{JAVA_HOME})
  21. file(TO_CMAKE_PATH "$ENV{JAVA_HOME}" _ENV_JAVA_HOME)
  22. endif()
  23. if(_ENV_JAVA_HOME AND IS_DIRECTORY "${_ENV_JAVA_HOME}")
  24. set(_JAVA_HOME "${_ENV_JAVA_HOME}")
  25. set(_JAVA_HOME_EXPLICIT 1)
  26. else()
  27. set(_CMD_JAVA_HOME "")
  28. if(APPLE AND EXISTS /usr/libexec/java_home)
  29. execute_process(COMMAND /usr/libexec/java_home
  30. OUTPUT_VARIABLE _CMD_JAVA_HOME OUTPUT_STRIP_TRAILING_WHITESPACE)
  31. endif()
  32. if(_CMD_JAVA_HOME AND IS_DIRECTORY "${_CMD_JAVA_HOME}")
  33. set(_JAVA_HOME "${_CMD_JAVA_HOME}")
  34. set(_JAVA_HOME_EXPLICIT 0)
  35. endif()
  36. unset(_CMD_JAVA_HOME)
  37. endif()
  38. unset(_ENV_JAVA_HOME)
  39. endif()