UseJavaSymlinks.cmake 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #.rst:
  2. # UseJavaSymlinks
  3. # ---------------
  4. #
  5. #
  6. #
  7. #
  8. #
  9. # Helper script for UseJava.cmake
  10. #=============================================================================
  11. # Copyright 2010-2011 Andreas schneider <asn@redhat.com>
  12. #
  13. # Distributed under the OSI-approved BSD License (the "License");
  14. # see accompanying file Copyright.txt for details.
  15. #
  16. # This software is distributed WITHOUT ANY WARRANTY; without even the
  17. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  18. # See the License for more information.
  19. #=============================================================================
  20. # (To distribute this file outside of CMake, substitute the full
  21. # License text for the above reference.)
  22. if (UNIX AND _JAVA_TARGET_OUTPUT_LINK)
  23. if (_JAVA_TARGET_OUTPUT_NAME)
  24. find_program(LN_EXECUTABLE
  25. NAMES
  26. ln
  27. )
  28. execute_process(
  29. COMMAND ${LN_EXECUTABLE} -sf "${_JAVA_TARGET_OUTPUT_NAME}" "${_JAVA_TARGET_OUTPUT_LINK}"
  30. WORKING_DIRECTORY ${_JAVA_TARGET_DIR}
  31. )
  32. else ()
  33. message(SEND_ERROR "FATAL: Can't find _JAVA_TARGET_OUTPUT_NAME")
  34. endif ()
  35. endif ()