1
0

UseSWIG.cmake 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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. FOREACH(it ${SWIG_PYTHON_EXTRA_FILE_EXTENSION})
  45. SET(${outfiles} ${${outfiles}}
  46. "${generatedpath}/${infile}.${it}")
  47. ENDFOREACH(it)
  48. ENDMACRO(SWIG_GET_EXTRA_OUTPUT_FILES)
  49. #
  50. # Take swig (*.i) file and add proper custom commands for it
  51. #
  52. MACRO(SWIG_ADD_SOURCE_TO_MODULE name outfiles infile)
  53. SET(swig_full_infile ${infile})
  54. GET_FILENAME_COMPONENT(swig_source_file_path "${infile}" PATH)
  55. GET_FILENAME_COMPONENT(swig_source_file_name_we "${infile}" NAME_WE)
  56. GET_SOURCE_FILE_PROPERTY(swig_source_file_generated ${infile} GENERATED)
  57. GET_SOURCE_FILE_PROPERTY(swig_source_file_cplusplus ${infile} CPLUSPLUS)
  58. GET_SOURCE_FILE_PROPERTY(swig_source_file_flags ${infile} SWIG_FLAGS)
  59. IF("${swig_source_file_flags}" STREQUAL "NOTFOUND")
  60. SET(swig_source_file_flags "")
  61. ENDIF("${swig_source_file_flags}" STREQUAL "NOTFOUND")
  62. SET(swig_source_file_fullname "${infile}")
  63. IF(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_SOURCE_DIR}")
  64. STRING(REGEX REPLACE
  65. "^${CMAKE_CURRENT_SOURCE_DIR}" ""
  66. swig_source_file_relative_path
  67. "${swig_source_file_path}")
  68. ELSE(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_SOURCE_DIR}")
  69. IF(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_BINARY_DIR}")
  70. STRING(REGEX REPLACE
  71. "^${CMAKE_CURRENT_BINARY_DIR}" ""
  72. swig_source_file_relative_path
  73. "${swig_source_file_path}")
  74. SET(swig_source_file_generated 1)
  75. ELSE(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_BINARY_DIR}")
  76. SET(swig_source_file_relative_path "${swig_source_file_path}")
  77. IF(swig_source_file_generated)
  78. SET(swig_source_file_fullname "${CMAKE_CURRENT_BINARY_DIR}/${infile}")
  79. ELSE(swig_source_file_generated)
  80. SET(swig_source_file_fullname "${CMAKE_CURRENT_SOURCE_DIR}/${infile}")
  81. ENDIF(swig_source_file_generated)
  82. ENDIF(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_BINARY_DIR}")
  83. ENDIF(${swig_source_file_path} MATCHES "^${CMAKE_CURRENT_SOURCE_DIR}")
  84. SET(swig_generated_file_fullname
  85. "${CMAKE_CURRENT_BINARY_DIR}")
  86. IF(swig_source_file_relative_path)
  87. SET(swig_generated_file_fullname
  88. "${swig_generated_file_fullname}/${swig_source_file_relative_path}")
  89. ENDIF(swig_source_file_relative_path)
  90. # If CMAKE_SWIG_OUTDIR was specified then pass it to -outdir
  91. IF(CMAKE_SWIG_OUTDIR)
  92. SET(swig_outdir ${CMAKE_SWIG_OUTDIR})
  93. ELSE(CMAKE_SWIG_OUTDIR)
  94. SET(swig_outdir ${CMAKE_CURRENT_BINARY_DIR})
  95. ENDIF(CMAKE_SWIG_OUTDIR)
  96. SWIG_GET_EXTRA_OUTPUT_FILES(${SWIG_MODULE_${name}_LANGUAGE}
  97. swig_extra_generated_files
  98. "${swig_outdir}"
  99. "${swig_source_file_name_we}")
  100. SET(swig_generated_file_fullname
  101. "${swig_generated_file_fullname}/${swig_source_file_name_we}")
  102. # add the language into the name of the file (i.e. TCL_wrap)
  103. # this allows for the same .i file to be wrapped into different languages
  104. SET(swig_generated_file_fullname
  105. "${swig_generated_file_fullname}${SWIG_MODULE_${name}_LANGUAGE}_wrap")
  106. IF(swig_source_file_cplusplus)
  107. SET(swig_generated_file_fullname
  108. "${swig_generated_file_fullname}.${SWIG_CXX_EXTENSION}")
  109. ELSE(swig_source_file_cplusplus)
  110. SET(swig_generated_file_fullname
  111. "${swig_generated_file_fullname}.c")
  112. ENDIF(swig_source_file_cplusplus)
  113. #MESSAGE("Full path to source file: ${swig_source_file_fullname}")
  114. #MESSAGE("Full path to the output file: ${swig_generated_file_fullname}")
  115. GET_DIRECTORY_PROPERTY(cmake_include_directories INCLUDE_DIRECTORIES)
  116. SET(swig_include_dirs)
  117. FOREACH(it ${cmake_include_directories})
  118. SET(swig_include_dirs ${swig_include_dirs} "-I${it}")
  119. ENDFOREACH(it)
  120. SET(swig_special_flags)
  121. # default is c, so add c++ flag if it is c++
  122. IF(swig_source_file_cplusplus)
  123. SET(swig_special_flags ${swig_special_flags} "-c++")
  124. ENDIF(swig_source_file_cplusplus)
  125. SET(swig_extra_flags)
  126. IF(SWIG_MODULE_${name}_EXTRA_FLAGS)
  127. SET(swig_extra_flags ${swig_extra_flags} ${SWIG_MODULE_${name}_EXTRA_FLAGS})
  128. ENDIF(SWIG_MODULE_${name}_EXTRA_FLAGS)
  129. ADD_CUSTOM_COMMAND(
  130. OUTPUT "${swig_generated_file_fullname}" ${swig_extra_generated_files}
  131. COMMAND "${SWIG_EXECUTABLE}"
  132. ARGS "-${SWIG_MODULE_${name}_SWIG_LANGUAGE_FLAG}"
  133. ${swig_source_file_flags}
  134. ${CMAKE_SWIG_FLAGS}
  135. -outdir ${swig_outdir}
  136. ${swig_special_flags}
  137. ${swig_extra_flags}
  138. ${swig_include_dirs}
  139. -o "${swig_generated_file_fullname}"
  140. "${swig_source_file_fullname}"
  141. MAIN_DEPENDENCY "${swig_source_file_fullname}"
  142. DEPENDS ${SWIG_MODULE_${name}_EXTRA_DEPS}
  143. COMMENT "Swig source")
  144. SET_SOURCE_FILES_PROPERTIES("${swig_generated_file_fullname}" ${swig_extra_generated_files}
  145. PROPERTIES GENERATED 1)
  146. SET(${outfiles} "${swig_generated_file_fullname}" ${swig_extra_generated_files})
  147. ENDMACRO(SWIG_ADD_SOURCE_TO_MODULE)
  148. #
  149. # Create Swig module
  150. #
  151. MACRO(SWIG_ADD_MODULE name language)
  152. SWIG_MODULE_INITIALIZE(${name} ${language})
  153. SET(swig_dot_i_sources)
  154. SET(swig_other_sources)
  155. FOREACH(it ${ARGN})
  156. IF(${it} MATCHES ".*\\.i$")
  157. SET(swig_dot_i_sources ${swig_dot_i_sources} "${it}")
  158. ELSE(${it} MATCHES ".*\\.i$")
  159. SET(swig_other_sources ${swig_other_sources} "${it}")
  160. ENDIF(${it} MATCHES ".*\\.i$")
  161. ENDFOREACH(it)
  162. SET(swig_generated_sources)
  163. FOREACH(it ${swig_dot_i_sources})
  164. SWIG_ADD_SOURCE_TO_MODULE(${name} swig_generated_source ${it})
  165. SET(swig_generated_sources ${swig_generated_sources} "${swig_generated_source}")
  166. ENDFOREACH(it)
  167. GET_DIRECTORY_PROPERTY(swig_extra_clean_files ADDITIONAL_MAKE_CLEAN_FILES)
  168. SET_DIRECTORY_PROPERTIES(PROPERTIES
  169. ADDITIONAL_MAKE_CLEAN_FILES "${swig_extra_clean_files};${swig_generated_sources}")
  170. ADD_LIBRARY(${SWIG_MODULE_${name}_REAL_NAME}
  171. MODULE
  172. ${swig_generated_sources}
  173. ${swig_other_sources})
  174. SET_TARGET_PROPERTIES(${SWIG_MODULE_${name}_REAL_NAME}
  175. PROPERTIES PREFIX "")
  176. ENDMACRO(SWIG_ADD_MODULE)
  177. #
  178. # Like TARGET_LINK_LIBRARIES but for swig modules
  179. #
  180. MACRO(SWIG_LINK_LIBRARIES name)
  181. IF(SWIG_MODULE_${name}_REAL_NAME)
  182. TARGET_LINK_LIBRARIES(${SWIG_MODULE_${name}_REAL_NAME} ${ARGN})
  183. ELSE(SWIG_MODULE_${name}_REAL_NAME)
  184. MESSAGE(SEND_ERROR "Cannot find Swig library \"${name}\".")
  185. ENDIF(SWIG_MODULE_${name}_REAL_NAME)
  186. ENDMACRO(SWIG_LINK_LIBRARIES name)