CMakeLists.txt 369 Bytes
#
# Don't call this file directly from cmake.
# TRhis file is included from the upper directory.
#
# Build rules for the daemon library

add_executable(MyExampleDaemon
               MyDaemonExample.cpp
)

target_include_directories(MyExampleDaemon PRIVATE
    ${CMAKE_CURRENT_SOURCE_DIR}
    ../include
)

target_link_libraries(MyExampleDaemon PRIVATE
    daemonbase
)