forked from Green-Sky/tomato
Green Sky
227425b90e
git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 67badf69416a74e74f6d7eb51dd96f37282b8455
25 lines
780 B
CMake
25 lines
780 B
CMake
# Unity build broken because of _XOPEN_SOURCE macro
|
|
set_source_files_properties(
|
|
src/tox-bootstrapd.c
|
|
PROPERTIES SKIP_UNITY_BUILD_INCLUSION TRUE)
|
|
|
|
add_executable(tox-bootstrapd
|
|
src/command_line_arguments.c
|
|
src/command_line_arguments.h
|
|
src/config.c
|
|
src/config.h
|
|
src/config_defaults.h
|
|
src/global.h
|
|
src/log.c
|
|
src/log.h
|
|
src/log_backend_stdout.c
|
|
src/log_backend_stdout.h
|
|
src/log_backend_syslog.c
|
|
src/log_backend_syslog.h
|
|
src/tox-bootstrapd.c
|
|
../bootstrap_node_packets.c
|
|
../bootstrap_node_packets.h)
|
|
target_link_modules(tox-bootstrapd toxcore ${LIBCONFIG_LIBRARIES})
|
|
install(TARGETS tox-bootstrapd RUNTIME DESTINATION bin)
|
|
install(FILES bash-completion/completions/tox-bootstrapd DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/bash-completion/completions")
|