mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 02:22:57 +01:00
48 lines
1.3 KiB
CMake
48 lines
1.3 KiB
CMake
set(LIBNAME "PocoNet")
|
|
set(LIBNAMED "${LIBNAME}d")
|
|
|
|
aux_source_directory(src BASE_SRCS)
|
|
|
|
set( WIN_SRCS
|
|
)
|
|
|
|
set( LIN_SRCS
|
|
)
|
|
|
|
if(CMAKE_SYSTEM MATCHES "Windows")
|
|
set(SRCS ${BASE_SRCS} ${WIN_SRCS})
|
|
else (CMAKE_SYSTEM MATCHES "Windows")
|
|
set(SRCS ${BASE_SRCS} ${LIN_SRCS})
|
|
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 COMPILE_FLAGS ${DEBUG_CXX_FLAGS}
|
|
VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}
|
|
SOVERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
|
|
target_link_libraries( ${LIBNAME} PocoFoundation)
|
|
|
|
add_library( ${LIBNAMED} ${LIB_MODE} ${SRCS} )
|
|
set_target_properties( ${LIBNAMED}
|
|
PROPERTIES COMPILE_FLAGS "${RELEASE_CXX_FLAGS}"
|
|
VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}
|
|
SOVERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
|
|
target_link_libraries( ${LIBNAMED} PocoFoundationd)
|
|
|
|
install(
|
|
DIRECTORY include/Poco
|
|
DESTINATION include
|
|
)
|
|
|
|
install(
|
|
TARGETS ${LIBNAME} ${LIBNAMED}
|
|
DESTINATION lib
|
|
)
|
|
|
|
add_subdirectory( samples )
|
|
add_subdirectory( testsuite )
|