mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
b41f211ece
* Initial commit
* initial commit
* added README.md
* Update README.md
* Add top level CMakeLists like another project in POCO framework. see #1
* Add CMakeLists to Avahi and Bonjour. (see #1)
* Missing changing in top level CMakeLists correct. (see #1)
* Add samples CMakeLists. (see #1)
* Add temporary cmake find module for Avahi and Bonjour in cmake directory. (see #1)
* Add mandatory requirement diff for POCO framework to DNSSD cmake can be work correctly. (see #1)
* Update README.md
Add cmake build way.
* Update README.md
Minor change.
* Update README.md
Removed ambiguous sentence.
* Moved files
* Add cmake modules
* Add cmake modules
* Remove modules
* Correct linux cmake ci.
* Exclude DNSSD from macos, windows.
* Update CMakeLists.txt
* Remove unused gitignore
* Remove deprecated vs versions
* Add vs160 and vs170 for DNSSD
* Remove deprecated sln
* Revert bad changes
* Revert bad changes
* chore: remove vs90 sln files
* chore: remove vs90 x64 files
* Revert "chore: remove vs90 sln files"
This reverts commit 51d78f82f1
.
* chore: add DNSSD to components
* chore(DNSSD): disable in CI, update copyright and doc
* fix(DNSSD): CMake on Apple platforms: fix finding library providing DNSSD.
* fix(DNSSD): Handle kDNSServiceFlagsNonBrowsable that was removed in 1096.0.2
* chore: naming and code modernize review comments
* enh(DNSSD): Define DNSSD_*_API for non-MSVC compilers.
---------
Co-authored-by: Günter Obiltschnig <guenter.obiltschnig@appinf.com>
Co-authored-by: <soroosh@soroosh-pc.localdomain>
Co-authored-by: Seyyed Soroosh Hosseinalipour <soorosh_abi@hotmail.com>
Co-authored-by: Matej Kenda <matejken@gmail.com>
89 lines
2.0 KiB
CMake
89 lines
2.0 KiB
CMake
# ITNOA
|
|
|
|
set(DNSSD_IMPLEMENTATION_LIBRARY "")
|
|
|
|
macro(ADD_AVAHI)
|
|
find_package(Avahi REQUIRED)
|
|
if(AVAHI_FOUND)
|
|
include_directories("${AVAHI_INCLUDE_DIR}")
|
|
message(STATUS "Avahi Support Enabled")
|
|
add_subdirectory( Avahi )
|
|
set(DNSSD_IMPLEMENTATION_LIBRARY "DNSSDAvahi")
|
|
else()
|
|
message(ERROR "Avahi does not found, please make install it")
|
|
endif()
|
|
endmacro()
|
|
|
|
macro(ADD_BONJOUR)
|
|
find_package(Bonjour REQUIRED)
|
|
if(BONJOUR_FOUND)
|
|
if(NOT APPLE)
|
|
include_directories("${BONJOUR_INCLUDE_DIR}")
|
|
endif()
|
|
message(STATUS "Bonjour Support Enabled")
|
|
add_subdirectory( Bonjour )
|
|
set(DNSSD_IMPLEMENTATION_LIBRARY "DNSSDBonjour")
|
|
else()
|
|
message(ERROR "Bonjour does not found, please make install sdk")
|
|
endif()
|
|
endmacro()
|
|
|
|
set(LIBNAME "DNSSD")
|
|
set(POCO_LIBNAME "Poco${LIBNAME}")
|
|
|
|
# Sources
|
|
file(GLOB SRCS_G "src/*.cpp")
|
|
POCO_SOURCES_AUTO( SRCS ${SRCS_G})
|
|
|
|
# Headers
|
|
file(GLOB_RECURSE HDRS_G "include/*.h" )
|
|
POCO_HEADERS_AUTO( SRCS ${HDRS_G})
|
|
|
|
if (NOT POCO_STATIC)
|
|
add_definitions(-DTHREADSAFE)
|
|
endif (NOT POCO_STATIC)
|
|
|
|
add_library( "${LIBNAME}" ${LIB_MODE} ${SRCS} )
|
|
add_library( "${POCO_LIBNAME}" ALIAS "${LIBNAME}")
|
|
set_target_properties( "${LIBNAME}"
|
|
PROPERTIES
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION}
|
|
OUTPUT_NAME ${POCO_LIBNAME}
|
|
DEFINE_SYMBOL DNSSD_EXPORTS
|
|
)
|
|
|
|
target_link_libraries( "${LIBNAME}" Foundation Net)
|
|
target_include_directories( "${LIBNAME}"
|
|
PUBLIC
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
$<INSTALL_INTERFACE:include>
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src
|
|
)
|
|
target_compile_definitions("${LIBNAME}" PUBLIC ${LIB_MODE_DEFINITIONS})
|
|
|
|
POCO_INSTALL("${LIBNAME}")
|
|
POCO_GENERATE_PACKAGE("${LIBNAME}")
|
|
|
|
if(ENABLE_DNSSD_DEFAULT)
|
|
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux") # `UNIX AND NOT APPLE` it is not equal to Linux ;)
|
|
set(LINUX TRUE)
|
|
endif()
|
|
if(LINUX)
|
|
ADD_AVAHI()
|
|
else()
|
|
ADD_BONJOUR()
|
|
endif()
|
|
endif()
|
|
|
|
if(ENABLE_DNSSD_AVHAI)
|
|
ADD_AVAHI()
|
|
endif()
|
|
|
|
if(ENABLE_DNSSD_BONJOUR)
|
|
ADD_BONJOUR()
|
|
endif()
|
|
|
|
if (ENABLE_SAMPLES)
|
|
add_subdirectory(samples)
|
|
endif ()
|