This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/library/system/CMakeLists.txt

39 lines
1.0 KiB
CMake
Raw Normal View History

2014-12-14 12:05:43 +00:00
add_library (sys SHARED sys.c crypto/md5.c crypto/md5.h)
#
# this will support getting better cryptographic support,
# but right now Open SSL is not supported enough.
#
find_package (OpenSSL)
macro_log_feature (OPENSSL_FOUND
OpenSLL
"Transport Layer Security (TLS) and Secure Sockets Layer (SSL) protocols"
"https://www.openssl.org/")
if (OPENSSL_FOUND)
include_directories (${OPENSSL_INCLUDE_DIR})
target_link_libraries(sys ${OPENSSL_LIBRARIES})
check_include_file( "openssl/ripemd.h" HAVE_OPENSSL_RIPEMD_H )
check_include_file( "openssl/md5.h" HAVE_OPENSSL_MD5_H )
endif (OPENSSL_FOUND)
check_library_exists( crypt crypt "" HAVE_LIBCRYPT )
if (HAVE_LIBCRYPT)
target_link_libraries(sys crypt)
endif (HAVE_LIBCRYPT)
2014-12-14 12:05:43 +00:00
target_link_libraries(sys libYap)
2016-04-05 08:02:02 +01:00
if (ANDROID)
target_link_libraries(sys android gmp)
endif()
2014-12-14 12:05:43 +00:00
set_target_properties (sys PROPERTIES PREFIX "")
install(TARGETS sys
2016-01-20 22:25:25 +00:00
LIBRARY DESTINATION ${dlls}
ARCHIVE DESTINATION ${dlls} )
2014-12-14 12:05:43 +00:00
configure_file ("sys_config.h.cmake" "sys_config.h" )