diff options
author | Robert Tari <robert@tari.in> | 2022-08-14 19:44:46 +0200 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2022-08-16 18:10:24 +0200 |
commit | be468e9659bc275c3e35a71b847f23a2e498d3d8 (patch) | |
tree | 7de34b5879812b342e97d89e3c6171eb487ca1c4 /cmake | |
parent | 8963b201e55613759c59a593d3db66d3f4c12da1 (diff) | |
download | ayatana-indicator-printers-be468e9659bc275c3e35a71b847f23a2e498d3d8.tar.gz ayatana-indicator-printers-be468e9659bc275c3e35a71b847f23a2e498d3d8.tar.bz2 ayatana-indicator-printers-be468e9659bc275c3e35a71b847f23a2e498d3d8.zip |
Add CMakeLists.txt files
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/GdbusCodegen.cmake | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/cmake/GdbusCodegen.cmake b/cmake/GdbusCodegen.cmake new file mode 100644 index 0000000..5261ba8 --- /dev/null +++ b/cmake/GdbusCodegen.cmake @@ -0,0 +1,36 @@ +cmake_minimum_required(VERSION 3.13) +if(POLICY CMP0011) + cmake_policy(SET CMP0011 NEW) +endif(POLICY CMP0011) + +find_program(GDBUS_CODEGEN NAMES gdbus-codegen DOC "gdbus-codegen executable") +if(NOT GDBUS_CODEGEN) + message(FATAL_ERROR "Excutable gdbus-codegen not found") +endif() + +macro(add_gdbus_codegen outfiles name prefix service_xml) + add_custom_command( + OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.h" "${CMAKE_CURRENT_BINARY_DIR}/${name}.c" + COMMAND "${GDBUS_CODEGEN}" + --interface-prefix "${prefix}" + --generate-c-code "${name}" + "${service_xml}" + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} + DEPENDS ${ARGN} "${service_xml}" + ) + list(APPEND ${outfiles} "${CMAKE_CURRENT_BINARY_DIR}/${name}.c") +endmacro(add_gdbus_codegen) + +macro(add_gdbus_codegen_with_namespace outfiles name prefix namespace service_xml) + add_custom_command( + OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.h" "${CMAKE_CURRENT_BINARY_DIR}/${name}.c" + COMMAND "${GDBUS_CODEGEN}" + --interface-prefix "${prefix}" + --generate-c-code "${name}" + --c-namespace "${namespace}" + "${service_xml}" + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} + DEPENDS ${ARGN} "${service_xml}" + ) + list(APPEND ${outfiles} "${CMAKE_CURRENT_BINARY_DIR}/${name}.c") +endmacro(add_gdbus_codegen_with_namespace) |