2012-11-11 11:28:44 +01:00
|
|
|
set(LIBNAME "PocoCrypto")
|
|
|
|
|
|
|
|
aux_source_directory(src SRCS)
|
|
|
|
add_definitions(-D_USRDLL -DCrypto_EXPORTS)
|
|
|
|
include_directories( include)
|
|
|
|
|
|
|
|
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
|
|
|
set_target_properties( ${LIBNAME} PROPERTIES VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
|
|
|
|
|
|
|
|
#if(CMAKE_SYSTEM MATCHES "Windows")
|
2012-12-08 18:54:38 +01:00
|
|
|
# target_link_libraries( ${LIBNAME} PocoFoundation ${LIB_EAY_RELEASE} ${OPENSSL_LIBRARIES} )
|
2012-11-11 11:28:44 +01:00
|
|
|
#ELSE()
|
2012-12-08 18:54:38 +01:00
|
|
|
# target_link_libraries( ${LIBNAME} PocoFoundation ${OPENSSL_SSL_LIBRARY} ${OPENSSL_CRYPTO_LIBRARY} )
|
2012-11-11 11:28:44 +01:00
|
|
|
#ENDIF()
|
|
|
|
|
2012-12-08 18:54:38 +01:00
|
|
|
target_link_libraries( ${LIBNAME} PocoFoundation ${OPENSSL_LIBRARIES} )
|
2012-11-11 11:28:44 +01:00
|
|
|
|
|
|
|
install(
|
|
|
|
DIRECTORY include/Poco
|
|
|
|
DESTINATION include
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
TARGETS ${LIBNAME}
|
|
|
|
DESTINATION lib
|
|
|
|
)
|
|
|
|
|
|
|
|
if (ENABLE_TESTS)
|
|
|
|
add_subdirectory(samples)
|
|
|
|
add_subdirectory(testsuite)
|
|
|
|
endif ()
|