UseSWIG.cmake 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. #
  2. # SWIG module for CMake
  3. #
  4. # Defines the following macros:
  5. #
  6. # SWIG_ADD_MODULE(name language [ files ])
  7. # - Define swig module with given name and specified language
  8. #
  9. # SWIG_LINK_LIBRARIES(name [ libraries ])
  10. # - Link libraries to swig module
  11. #
  12. # All other macros are for internal use only.
  13. #
  14. # To get the actual name of the swig module, use: ${SWIG_MODULE_name_REAL_NAME}.
  15. # Set Source files propertis such as CPLUSPLUS and SWIG_FLAGS to specify
  16. # special behavior of SWIG. Also global CMAKE_SWIG_FLAGS can be used to add
  17. # special flags to all swig calls.
  18. SET(SWIG_CXX_EXTENSION "cxx")
  19. SET(SWIG_EXTRA_LIBRARIES "")
  20. SET(SWIG_PYTHON_EXTRA_FILE_EXTENSION "py")
  21. #
  22. # For given swig module initialize variables associated with it
  23. #
  24. MACRO(SWIG_MODULE_INITIALIZE name language)
  25. STRING(TOUPPER "${language}" swig_uppercase_language)
  26. STRING(TOLOWER "${language}" swig_lowercase_language)
  27. SET(SWIG_MODULE_${name}_LANGUAGE "${swig_uppercase_language}")
  28. SET(SWIG_MODULE_${name}_SWIG_LANGUAGE_FLAG "${swig_lowercase_language}")
  29. IF("x${SWIG_MODULE_${name}_LANGUAGE}x" MATCHES "^xUNKNOWNx$")
  30. MESSAGE(FATAL_ERROR "SWIG Error: Language \"${language}\" not found")
  31. ENDIF("x${SWIG_MODULE_${name}_LANGUAGE}x" MATCHES "^xUNKNOWNx$")
  32. SET(SWIG_MODULE_${name}_REAL_NAME "${name}")
  33. IF("x${SWIG_MODULE_${name}_LANGUAGE}x" MATCHES "^xPYTHONx$")
  34. SET(SWIG_MODULE_${name}_REAL_NAME "_${name}")
  35. ENDIF("x${SWIG_MODULE_${name}_LANGUAGE}x" MATCHES "^xPYTHONx$")
  36. IF("x${SWIG_MODULE_${name}_LANGUAGE}x" MATCHES "^xPERLx$")
  37. SET(SWIG_MODULE_${name}_EXTRA_FLAGS "-shadow")
  38. ENDIF("x${SWIG_MODULE_${name}_LANGUAGE}x" MATCHES "^xPERLx$")
  39. ENDMACRO(SWIG_MODULE_INITIALIZE)
  40. #
  41. # For a given language, input file, and output file, determine extra files that
  42. # will be generated. This is internal swig macro.
  43. #
  44. MACRO(SWIG_GET_EXTRA_OUTPUT_FILES language outfiles generatedpath infile)
  45. FOREACH(it ${SWIG_PYTHON_EXTRA_FILE_EXTENSION})
  46. SET(outfiles ${outfiles}
  47. "${generatedpath}/${infile}.${it}")
  48. ENDFOREACH(it)
  49. ENDMACRO(SWIG_GET_EXTRA_OUTPUT_FILES)
  50. #
  51. # Take swig (*.i) file and add proper custom commands for it
  52. #
  53. MACRO(SWIG_ADD_SOURCE_TO_MODULE name outfiles infile)
  54. SET(swig_full_infile ${infile})
  55. GET_FILENAME_COMPONENT(swig_source_file_path "${infile}" PATH)
  56. GET_FILENAME_COMPONENT(swig_source_file_name_we "${infile}" NAME_WE)
  57. GET_SOURCE_FILE_PROPERTY(swig_source_file_generated ${infile} GENERATED)
  58. GET_SOURCE_FILE_PROPERTY(swig_source_file_cplusplus ${infile} CPLUSPLUS)
  59. GET_SOURCE_FILE_PROPERTY(swig_source_file_flags ${infile} SWIG_FLAGS)
  60. SET(swig_source_file_fullname "${infile}")
  61. IF(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_SOURCE_DIR}")
  62. STRING(REGEX REPLACE
  63. "^${CMAKE_CURRENT_SOURCE_DIR}" ""
  64. swig_source_file_relative_path
  65. "${swig_source_file_path}")
  66. ELSE(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_SOURCE_DIR}")
  67. IF(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_BINARY_DIR}")
  68. STRING(REGEX REPLACE
  69. "^${CMAKE_CURRENT_BINARY_DIR}" ""
  70. swig_source_file_relative_path
  71. "${swig_source_file_path}")
  72. SET(swig_source_file_generated 1)
  73. ELSE(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_BINARY_DIR}")
  74. SET(swig_source_file_relative_path "${swig_source_file_path}")
  75. IF(swig_source_file_generated)
  76. SET(swig_source_file_fullname "${CMAKE_CURRENT_BINARY_DIR}/${infile}")
  77. ELSE(swig_source_file_generated)
  78. SET(swig_source_file_fullname "${CMAKE_CURRENT_SOURCE_DIR}/${infile}")
  79. ENDIF(swig_source_file_generated)
  80. ENDIF(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_BINARY_DIR}")
  81. ENDIF(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_SOURCE_DIR}")
  82. SET(swig_generated_file_fullname
  83. "${CMAKE_CURRENT_BINARY_DIR}")
  84. IF(swig_source_file_relative_path)
  85. SET(swig_generated_file_fullname
  86. "${swig_generated_file_fullname}/${swig_source_file_relative_path}")
  87. ENDIF(swig_source_file_relative_path)
  88. SWIG_GET_EXTRA_OUTPUT_FILES(${SWIG_MODULE_${name}_LANGUAGE}
  89. swig_extra_generated_files
  90. "${swig_generated_file_fullname}"
  91. "${swig_source_file_name_we}")
  92. SET(swig_generated_file_fullname
  93. "${swig_generated_file_fullname}/${swig_source_file_name_we}")
  94. # add the language into the name of the file (i.e. TCL_wrap)
  95. # this allows for the same .i file to be wrapped into different languages
  96. SET(swig_generated_file_fullname
  97. "${swig_generated_file_fullname}${SWIG_MODULE_${name}_LANGUAGE}_wrap")
  98. IF(swig_source_file_cplusplus)
  99. SET(swig_generated_file_fullname
  100. "${swig_generated_file_fullname}.${SWIG_CXX_EXTENSION}")
  101. ELSE(swig_source_file_cplusplus)
  102. SET(swig_generated_file_fullname
  103. "${swig_generated_file_fullname}.c")
  104. ENDIF(swig_source_file_cplusplus)
  105. #MESSAGE("Full path to source file: ${swig_source_file_fullname}")
  106. #MESSAGE("Full path to the output file: ${swig_generated_file_fullname}")
  107. GET_DIRECTORY_PROPERTY(cmake_include_directories INCLUDE_DIRECTORIES)
  108. SET(swig_include_dirs)
  109. FOREACH(it ${cmake_include_directories})
  110. SET(swig_include_dirs ${swig_include_dirs} "-I${it}")
  111. ENDFOREACH(it)
  112. SET(swig_special_flags)
  113. IF(swig_source_file_cplusplus)
  114. SET(swig_special_flags ${swig_special_flags} "-c++")
  115. ELSE(swig_source_file_cplusplus)
  116. SET(swig_special_flags ${swig_special_flags} "-c")
  117. ENDIF(swig_source_file_cplusplus)
  118. SET(swig_extra_flags)
  119. IF(SWIG_MODULE_${name}_EXTRA_FLAGS)
  120. SET(swig_extra_flags ${swig_extra_flags} ${SWIG_MODULE_${name}_EXTRA_FLAGS})
  121. ENDIF(SWIG_MODULE_${name}_EXTRA_FLAGS)
  122. ADD_CUSTOM_COMMAND(
  123. OUTPUT "${swig_generated_file_fullname}"
  124. COMMAND "${SWIG_EXECUTABLE}"
  125. ARGS "-${SWIG_MODULE_${name}_SWIG_LANGUAGE_FLAG}"
  126. ${swig_source_file_flags}
  127. ${CMAKE_SWIG_FLAGS}
  128. ${swig_special_flags}
  129. ${swig_extra_flags}
  130. ${swig_include_dirs}
  131. -o "${swig_generated_file_fullname}"
  132. "${swig_source_file_fullname}"
  133. MAIN_DEPENDENCY "${swig_source_file_fullname}"
  134. COMMENT "Swig source")
  135. SET_SOURCE_FILES_PROPERTIES("${swig_generated_file_fullname}"
  136. PROPERTIES GENERATED 1)
  137. SET(${outfiles} "${swig_generated_file_fullname}")
  138. ENDMACRO(SWIG_ADD_SOURCE_TO_MODULE)
  139. #
  140. # Create Swig module
  141. #
  142. MACRO(SWIG_ADD_MODULE name language)
  143. SWIG_MODULE_INITIALIZE(${name} ${language})
  144. SET(swig_dot_i_sources)
  145. SET(swig_other_sources)
  146. FOREACH(it ${ARGN})
  147. IF(${it} MATCHES ".*\\.i$")
  148. SET(swig_dot_i_sources ${swig_dot_i_sources} "${it}")
  149. ELSE(${it} MATCHES ".*\\.i$")
  150. SET(swig_other_sources ${swig_other_sources} "${it}")
  151. ENDIF(${it} MATCHES ".*\\.i$")
  152. ENDFOREACH(it)
  153. SET(swig_generated_sources)
  154. FOREACH(it ${swig_dot_i_sources})
  155. SWIG_ADD_SOURCE_TO_MODULE(${name} swig_generated_source ${it})
  156. SET(swig_generated_sources ${swig_generated_sources} "${swig_generated_source}")
  157. ENDFOREACH(it)
  158. SET_DIRECTORY_PROPERTIES(PROPERTIES
  159. ADDITIONAL_MAKE_CLEAN_FILES "${ADDITIONAL_MAKE_CLEAN_FILES};${swig_generated_sources}")
  160. ADD_LIBRARY(${SWIG_MODULE_${name}_REAL_NAME}
  161. MODULE
  162. ${swig_generated_sources}
  163. ${swig_other_sources})
  164. SET_TARGET_PROPERTIES(${SWIG_MODULE_${name}_REAL_NAME}
  165. PROPERTIES PREFIX "")
  166. ENDMACRO(SWIG_ADD_MODULE)
  167. #
  168. # Like TARGET_LINK_LIBRARIES but for swig modules
  169. #
  170. MACRO(SWIG_LINK_LIBRARIES name)
  171. IF(SWIG_MODULE_${name}_REAL_NAME)
  172. TARGET_LINK_LIBRARIES(${SWIG_MODULE_${name}_REAL_NAME} ${ARGN})
  173. ELSE(SWIG_MODULE_${name}_REAL_NAME)
  174. MESSAGE(SEND_ERROR "Cannot find Swig library \"${name}\".")
  175. ENDIF(SWIG_MODULE_${name}_REAL_NAME)
  176. ENDMACRO(SWIG_LINK_LIBRARIES name)