mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
42 lines
992 B
CMake
42 lines
992 B
CMake
set(LIBNAME "PocoUtil")
|
|
set(POCO_LIBNAME "${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})
|
|
|
|
POCO_SOURCES_AUTO_PLAT( SRCS WIN32
|
|
src/WinRegistryConfiguration.cpp
|
|
src/WinRegistryKey.cpp
|
|
src/WinService.cpp
|
|
)
|
|
|
|
add_library( "${LIBNAME}" ${LIB_MODE} ${SRCS} )
|
|
set_target_properties( "${LIBNAME}"
|
|
PROPERTIES
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION}
|
|
OUTPUT_NAME ${POCO_LIBNAME}
|
|
DEFINE_SYMBOL Util_EXPORTS
|
|
)
|
|
|
|
target_link_libraries( "${LIBNAME}" PocoFoundation)
|
|
if (ENABLE_XML)
|
|
target_link_libraries( "${LIBNAME}" PocoXML)
|
|
else ()
|
|
add_definitions( -DPOCO_UTIL_NO_XMLCONFIGURATION )
|
|
endif()
|
|
if (ENABLE_JSON)
|
|
target_link_libraries( "${LIBNAME}" PocoJSON)
|
|
else ()
|
|
add_definitions( -DPOCO_UTIL_NO_JSONCONFIGURATION )
|
|
endif()
|
|
|
|
if (ENABLE_TESTS)
|
|
add_subdirectory(samples)
|
|
add_subdirectory(testsuite)
|
|
endif ()
|