ClickHouse/tools/init.d/CMakeLists.init
Ilya Korolev 4c29d0ae39 Metrica
- дальнейшие правки для сборки deb-пакетов
2008-12-08 06:42:56 +00:00

14 lines
671 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# В этом файле описаны действия для добавления init.d скрипта. Пока в разработке.
# Данный файл нужно включать в CMakeLists.txt в каталоге каждого конкретного демона.
# Пример использования:
# set(SRCS)
# INCLUDE( ${PROJECT_SOURCE_DIR}/CMakeLists.ssqls )
macro (CREATE_INIT_SCRIPT initname daemonname)
add_custom_command(OUTPUT ${initname} ${daemonname}
COMMAND sed -e 's,[@]DAEMON[@],${daemonname},g' < ${PROJECT_SOURCE_DIR}/tools/init.d/template > ${initname}
COMMENT "Building ${initname}"
)
endmacro (CREATE_INIT_SCRIPT)