UseSWIG.cmake 8.6 KB

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