2016-06-03 16:46:45 +02:00
|
|
|
|
|
|
|
# Define the current source locations
|
|
|
|
set(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/bonjour)
|
|
|
|
set(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/bonjour)
|
|
|
|
|
2017-08-04 23:08:15 +02:00
|
|
|
FILE ( GLOB Bonjour_SOURCES "${CURRENT_HEADER_DIR}/*.h" "${CURRENT_SOURCE_DIR}/*.h" "${CURRENT_SOURCE_DIR}/*.cpp" )
|
2016-06-03 16:46:45 +02:00
|
|
|
|
2017-08-04 23:08:15 +02:00
|
|
|
add_library(bonjour ${Bonjour_SOURCES} )
|
2016-06-03 16:46:45 +02:00
|
|
|
|
|
|
|
target_link_libraries(bonjour
|
2016-06-17 01:25:40 +02:00
|
|
|
hyperion
|
|
|
|
hyperion-utils
|
2017-08-01 15:42:36 +02:00
|
|
|
Qt5::Network
|
|
|
|
)
|
2016-06-17 01:25:40 +02:00
|
|
|
|
2017-02-17 08:33:34 +01:00
|
|
|
IF (NOT APPLE)
|
|
|
|
set(USE_SHARED_AVAHI_LIBS ${DEFAULT_USE_SHARED_AVAHI_LIBS} CACHE BOOL "use avahi libraries from system")
|
|
|
|
|
|
|
|
if (USE_SHARED_AVAHI_LIBS)
|
|
|
|
target_link_libraries(bonjour
|
|
|
|
dns_sd
|
|
|
|
avahi-client
|
|
|
|
avahi-common
|
|
|
|
avahi-core)
|
|
|
|
else()
|
|
|
|
target_link_libraries(bonjour
|
|
|
|
libdns_sd.a
|
|
|
|
libavahi-client.a
|
|
|
|
libavahi-common.a
|
|
|
|
libavahi-core.a)
|
|
|
|
endif()
|
|
|
|
target_link_libraries(bonjour dbus-1)
|
|
|
|
ENDIF()
|