mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 02:22:57 +01:00
46 lines
947 B
CMake
46 lines
947 B
CMake
set(LIBNAME "PocoNet")
|
|
set(LIBNAME "${LIBNAME}${LIB_EXT}")
|
|
|
|
aux_source_directory(src BASE_SRCS)
|
|
|
|
set( WIN_SRCS
|
|
)
|
|
|
|
set( LIN_SRCS
|
|
)
|
|
|
|
if(CMAKE_SYSTEM MATCHES "Windows")
|
|
set(SRCS ${BASE_SRCS} ${WIN_SRCS})
|
|
set(SYSLIBS ${SYSLIBS} ws2_32)
|
|
else (CMAKE_SYSTEM MATCHES "Windows")
|
|
set(SRCS ${BASE_SRCS} ${LIN_SRCS})
|
|
add_definitions(-DPOCO_HAVE_FD_POLL)
|
|
endif(CMAKE_SYSTEM MATCHES "Windows")
|
|
|
|
if (NOT POCO_STATIC)
|
|
add_definitions(-DNet_EXPORTS)
|
|
endif (NOT POCO_STATIC)
|
|
|
|
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
|
set_target_properties( ${LIBNAME}
|
|
PROPERTIES
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
|
|
target_link_libraries( ${LIBNAME} PocoFoundation${LIB_EXT} ${SYSLIBS})
|
|
|
|
install(
|
|
DIRECTORY include/Poco
|
|
DESTINATION include
|
|
PATTERN ".svn" EXCLUDE
|
|
)
|
|
|
|
install(
|
|
TARGETS ${LIBNAME}
|
|
DESTINATION lib
|
|
)
|
|
|
|
if (ENABLE_TESTS)
|
|
add_subdirectory(samples)
|
|
add_subdirectory(testsuite)
|
|
endif ()
|
|
|