Qt5DBusMacros.cmake 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. #=============================================================================
  2. # Copyright 2005-2011 Kitware, Inc.
  3. # All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions
  7. # are met:
  8. #
  9. # * Redistributions of source code must retain the above copyright
  10. # notice, this list of conditions and the following disclaimer.
  11. #
  12. # * Redistributions in binary form must reproduce the above copyright
  13. # notice, this list of conditions and the following disclaimer in the
  14. # documentation and/or other materials provided with the distribution.
  15. #
  16. # * Neither the name of Kitware, Inc. nor the names of its
  17. # contributors may be used to endorse or promote products derived
  18. # from this software without specific prior written permission.
  19. #
  20. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. # HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. #=============================================================================
  32. include(MacroAddFileDependencies)
  33. include(CMakeParseArguments)
  34. function(QT5_ADD_DBUS_INTERFACE _sources _interface _basename)
  35. get_filename_component(_infile ${_interface} ABSOLUTE)
  36. set(_header "${CMAKE_CURRENT_BINARY_DIR}/${_basename}.h")
  37. set(_impl "${CMAKE_CURRENT_BINARY_DIR}/${_basename}.cpp")
  38. set(_moc "${CMAKE_CURRENT_BINARY_DIR}/${_basename}.moc")
  39. get_source_file_property(_nonamespace ${_interface} NO_NAMESPACE)
  40. if(_nonamespace)
  41. set(_params -N -m)
  42. else()
  43. set(_params -m)
  44. endif()
  45. get_source_file_property(_classname ${_interface} CLASSNAME)
  46. if(_classname)
  47. set(_params ${_params} -c ${_classname})
  48. endif()
  49. get_source_file_property(_include ${_interface} INCLUDE)
  50. if(_include)
  51. set(_params ${_params} -i ${_include})
  52. endif()
  53. add_custom_command(OUTPUT "${_impl}" "${_header}"
  54. COMMAND ${Qt5DBus_QDBUSXML2CPP_EXECUTABLE} ${_params} -p ${_basename} ${_infile}
  55. DEPENDS ${_infile} VERBATIM)
  56. set_source_files_properties("${_impl}" PROPERTIES SKIP_AUTOMOC TRUE)
  57. qt5_generate_moc("${_header}" "${_moc}")
  58. list(APPEND ${_sources} "${_impl}" "${_header}" "${_moc}")
  59. macro_add_file_dependencies("${_impl}" "${_moc}")
  60. set(${_sources} ${${_sources}} PARENT_SCOPE)
  61. endfunction()
  62. function(QT5_ADD_DBUS_INTERFACES _sources)
  63. foreach(_current_FILE ${ARGN})
  64. get_filename_component(_infile ${_current_FILE} ABSOLUTE)
  65. get_filename_component(_basename ${_current_FILE} NAME)
  66. # get the part before the ".xml" suffix
  67. string(TOLOWER ${_basename} _basename)
  68. string(REGEX REPLACE "(.*\\.)?([^\\.]+)\\.xml" "\\2" _basename ${_basename})
  69. qt5_add_dbus_interface(${_sources} ${_infile} ${_basename}interface)
  70. endforeach()
  71. set(${_sources} ${${_sources}} PARENT_SCOPE)
  72. endfunction()
  73. function(QT5_GENERATE_DBUS_INTERFACE _header) # _customName OPTIONS -some -options )
  74. set(options)
  75. set(oneValueArgs)
  76. set(multiValueArgs OPTIONS)
  77. cmake_parse_arguments(_DBUS_INTERFACE "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
  78. set(_customName ${_DBUS_INTERFACE_UNPARSED_ARGUMENTS})
  79. set(_qt4_dbus_options ${_DBUS_INTERFACE_OPTIONS})
  80. get_filename_component(_in_file ${_header} ABSOLUTE)
  81. get_filename_component(_basename ${_header} NAME_WE)
  82. if(_customName)
  83. if(IS_ABSOLUTE ${_customName})
  84. get_filename_component(_containingDir ${_customName} PATH)
  85. if(NOT EXISTS ${_containingDir})
  86. file(MAKE_DIRECTORY "${_containingDir}")
  87. endif()
  88. set(_target ${_customName})
  89. else()
  90. set(_target ${CMAKE_CURRENT_BINARY_DIR}/${_customName})
  91. endif()
  92. else()
  93. set(_target ${CMAKE_CURRENT_BINARY_DIR}/${_basename}.xml)
  94. endif()
  95. add_custom_command(OUTPUT ${_target}
  96. COMMAND ${Qt5DBus_QDBUSCPP2XML_EXECUTABLE} ${_qt4_dbus_options} ${_in_file} -o ${_target}
  97. DEPENDS ${_in_file} VERBATIM
  98. )
  99. endfunction()
  100. function(QT5_ADD_DBUS_ADAPTOR _sources _xml_file _include _parentClass) # _optionalBasename _optionalClassName)
  101. get_filename_component(_infile ${_xml_file} ABSOLUTE)
  102. set(_optionalBasename "${ARGV4}")
  103. if(_optionalBasename)
  104. set(_basename ${_optionalBasename} )
  105. else()
  106. string(REGEX REPLACE "(.*[/\\.])?([^\\.]+)\\.xml" "\\2adaptor" _basename ${_infile})
  107. string(TOLOWER ${_basename} _basename)
  108. endif()
  109. set(_optionalClassName "${ARGV5}")
  110. set(_header "${CMAKE_CURRENT_BINARY_DIR}/${_basename}.h")
  111. set(_impl "${CMAKE_CURRENT_BINARY_DIR}/${_basename}.cpp")
  112. set(_moc "${CMAKE_CURRENT_BINARY_DIR}/${_basename}.moc")
  113. if(_optionalClassName)
  114. add_custom_command(OUTPUT "${_impl}" "${_header}"
  115. COMMAND ${Qt5DBus_QDBUSXML2CPP_EXECUTABLE} -m -a ${_basename} -c ${_optionalClassName} -i ${_include} -l ${_parentClass} ${_infile}
  116. DEPENDS ${_infile} VERBATIM
  117. )
  118. else()
  119. add_custom_command(OUTPUT "${_impl}" "${_header}"
  120. COMMAND ${Qt5DBus_QDBUSXML2CPP_EXECUTABLE} -m -a ${_basename} -i ${_include} -l ${_parentClass} ${_infile}
  121. DEPENDS ${_infile} VERBATIM
  122. )
  123. endif()
  124. qt5_generate_moc("${_header}" "${_moc}")
  125. set_source_files_properties("${_impl}" PROPERTIES SKIP_AUTOMOC TRUE)
  126. macro_add_file_dependencies("${_impl}" "${_moc}")
  127. list(APPEND ${_sources} "${_impl}" "${_header}" "${_moc}")
  128. set(${_sources} ${${_sources}} PARENT_SCOPE)
  129. endfunction()