CMakeJavaInformation.cmake 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #=============================================================================
  2. # Copyright 2004-2011 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. # This should be included before the _INIT variables are
  14. # used to initialize the cache. Since the rule variables
  15. # have if blocks on them, users can still define them here.
  16. # But, it should still be after the platform file so changes can
  17. # be made to those values.
  18. if(CMAKE_USER_MAKE_RULES_OVERRIDE)
  19. # Save the full path of the file so try_compile can use it.
  20. include(${CMAKE_USER_MAKE_RULES_OVERRIDE} RESULT_VARIABLE _override)
  21. set(CMAKE_USER_MAKE_RULES_OVERRIDE "${_override}")
  22. endif()
  23. if(CMAKE_USER_MAKE_RULES_OVERRIDE_Java)
  24. # Save the full path of the file so try_compile can use it.
  25. include(${CMAKE_USER_MAKE_RULES_OVERRIDE_Java} RESULT_VARIABLE _override)
  26. set(CMAKE_USER_MAKE_RULES_OVERRIDE_Java "${_override}")
  27. endif()
  28. # this is a place holder if java needed flags for javac they would go here.
  29. if(NOT CMAKE_Java_CREATE_STATIC_LIBRARY)
  30. # if(WIN32)
  31. # set(class_files_mask "*.class")
  32. # else()
  33. set(class_files_mask ".")
  34. # endif()
  35. set(CMAKE_Java_CREATE_STATIC_LIBRARY
  36. "<CMAKE_Java_ARCHIVE> -cf <TARGET> -C <OBJECT_DIR> ${class_files_mask}")
  37. # "${class_files_mask}" should really be "<OBJECTS>" but compling a *.java
  38. # file can create more than one *.class file...
  39. endif()
  40. # compile a Java file into an object file
  41. if(NOT CMAKE_Java_COMPILE_OBJECT)
  42. set(CMAKE_Java_COMPILE_OBJECT
  43. "<CMAKE_Java_COMPILER> <FLAGS> <SOURCE> -d <OBJECT_DIR>")
  44. endif()
  45. # set java include flag option and the separator for multiple include paths
  46. set(CMAKE_INCLUDE_FLAG_Java "-classpath ")
  47. if(WIN32 AND NOT CYGWIN)
  48. set(CMAKE_INCLUDE_FLAG_SEP_Java ";")
  49. else()
  50. set(CMAKE_INCLUDE_FLAG_SEP_Java ":")
  51. endif()