Warning, /system/apper/cmake/modules/MacroDBusAddActivationService.cmake is written in an unsupported language. File is not indexed.

0001 macro(dbus_add_activation_service _sources)
0002     foreach (_i ${_sources})
0003         get_filename_component(_service_file ${_i} ABSOLUTE)
0004         string(REGEX REPLACE "\\.service.*$" ".service" _output_file ${_i})
0005         set(_target ${CMAKE_CURRENT_BINARY_DIR}/${_output_file})
0006         configure_file(${_service_file} ${_target})
0007         install(FILES ${_target} DESTINATION ${CMAKE_INSTALL_DBUSSERVICEDIR} )
0008     endforeach (_i ${ARGN})
0009 endmacro(dbus_add_activation_service _sources)