2015-01-27 16:44:46 +01:00
|
|
|
option(USE_STATIC_MBEDTLS_LIBRARY "Build mbed TLS static library." ON)
|
|
|
|
option(USE_SHARED_MBEDTLS_LIBRARY "Build mbed TLS shared library." OFF)
|
2015-01-23 14:33:31 +01:00
|
|
|
option(LINK_WITH_PTHREAD "Explicitly link mbed TLS library to pthread." OFF)
|
2011-01-05 16:24:43 +01:00
|
|
|
|
2015-06-24 11:54:19 +02:00
|
|
|
set(src_crypto
|
|
|
|
aes.c
|
|
|
|
aesni.c
|
|
|
|
arc4.c
|
|
|
|
asn1parse.c
|
|
|
|
asn1write.c
|
|
|
|
base64.c
|
|
|
|
bignum.c
|
|
|
|
blowfish.c
|
|
|
|
camellia.c
|
|
|
|
ccm.c
|
|
|
|
cipher.c
|
|
|
|
cipher_wrap.c
|
|
|
|
ctr_drbg.c
|
|
|
|
des.c
|
|
|
|
dhm.c
|
|
|
|
ecdh.c
|
|
|
|
ecdsa.c
|
|
|
|
ecp.c
|
|
|
|
ecp_curves.c
|
|
|
|
entropy.c
|
|
|
|
entropy_poll.c
|
|
|
|
error.c
|
|
|
|
gcm.c
|
|
|
|
havege.c
|
|
|
|
hmac_drbg.c
|
|
|
|
md.c
|
|
|
|
md2.c
|
|
|
|
md4.c
|
|
|
|
md5.c
|
|
|
|
md_wrap.c
|
|
|
|
memory_buffer_alloc.c
|
|
|
|
oid.c
|
|
|
|
padlock.c
|
|
|
|
pem.c
|
|
|
|
pk.c
|
|
|
|
pk_wrap.c
|
|
|
|
pkcs12.c
|
|
|
|
pkcs5.c
|
|
|
|
pkparse.c
|
|
|
|
pkwrite.c
|
|
|
|
platform.c
|
|
|
|
ripemd160.c
|
|
|
|
rsa.c
|
|
|
|
sha1.c
|
|
|
|
sha256.c
|
|
|
|
sha512.c
|
|
|
|
threading.c
|
2015-06-25 10:59:15 +02:00
|
|
|
timing.c
|
2015-06-24 11:54:19 +02:00
|
|
|
version.c
|
|
|
|
version_features.c
|
|
|
|
xtea.c
|
|
|
|
)
|
|
|
|
|
|
|
|
set(src_x509
|
|
|
|
certs.c
|
|
|
|
pkcs11.c
|
|
|
|
x509.c
|
|
|
|
x509_create.c
|
|
|
|
x509_crl.c
|
|
|
|
x509_crt.c
|
|
|
|
x509_csr.c
|
|
|
|
x509write_crt.c
|
|
|
|
x509write_csr.c
|
|
|
|
)
|
|
|
|
|
|
|
|
set(src_tls
|
|
|
|
debug.c
|
|
|
|
net.c
|
|
|
|
ssl_cache.c
|
|
|
|
ssl_ciphersuites.c
|
|
|
|
ssl_cli.c
|
|
|
|
ssl_cookie.c
|
|
|
|
ssl_srv.c
|
|
|
|
ssl_ticket.c
|
|
|
|
ssl_tls.c
|
|
|
|
)
|
|
|
|
|
2011-01-05 16:24:43 +01:00
|
|
|
set(src
|
2015-06-24 11:54:19 +02:00
|
|
|
${src_crypto}
|
|
|
|
${src_x509}
|
|
|
|
${src_tls}
|
2009-06-28 23:50:27 +02:00
|
|
|
)
|
2011-01-05 16:07:54 +01:00
|
|
|
|
2012-05-10 23:54:28 +02:00
|
|
|
if(WIN32)
|
|
|
|
set(libs ws2_32)
|
|
|
|
endif(WIN32)
|
|
|
|
|
2013-11-28 17:20:04 +01:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCC)
|
2014-11-14 16:34:36 +01:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wmissing-declarations -Wmissing-prototypes")
|
2013-11-28 17:20:04 +01:00
|
|
|
endif(CMAKE_COMPILER_IS_GNUCC)
|
|
|
|
|
2014-06-25 15:59:50 +02:00
|
|
|
if(CMAKE_COMPILER_IS_CLANG)
|
2015-01-20 17:45:20 +01:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wmissing-declarations -Wmissing-prototypes -Wdocumentation -Wno-documentation-deprecated-sync -Wunreachable-code")
|
2014-06-25 15:59:50 +02:00
|
|
|
endif(CMAKE_COMPILER_IS_CLANG)
|
|
|
|
|
2015-01-27 16:44:46 +01:00
|
|
|
if (NOT USE_STATIC_MBEDTLS_LIBRARY AND NOT USE_SHARED_MBEDTLS_LIBRARY)
|
|
|
|
message(FATAL_ERROR "Need to choose static or shared mbedtls build!")
|
|
|
|
endif(NOT USE_STATIC_MBEDTLS_LIBRARY AND NOT USE_SHARED_MBEDTLS_LIBRARY)
|
2011-01-05 16:24:43 +01:00
|
|
|
|
2015-01-27 16:44:46 +01:00
|
|
|
if(USE_STATIC_MBEDTLS_LIBRARY AND USE_SHARED_MBEDTLS_LIBRARY)
|
2014-03-06 15:49:08 +01:00
|
|
|
# if we build both static an shared, then let
|
|
|
|
# tests and programs link to the shared lib target
|
2015-01-27 16:44:46 +01:00
|
|
|
set(mbedtls_static_target "mbedtls_static")
|
|
|
|
elseif(USE_STATIC_MBEDTLS_LIBRARY)
|
|
|
|
set(mbedtls_static_target "mbedtls")
|
2014-03-06 15:49:08 +01:00
|
|
|
endif()
|
2011-01-05 16:24:43 +01:00
|
|
|
|
2015-01-27 16:44:46 +01:00
|
|
|
if(USE_STATIC_MBEDTLS_LIBRARY)
|
|
|
|
add_library(${mbedtls_static_target} STATIC ${src})
|
|
|
|
set_target_properties(${mbedtls_static_target} PROPERTIES OUTPUT_NAME mbedtls)
|
|
|
|
target_link_libraries(${mbedtls_static_target} ${libs})
|
2014-03-17 15:11:13 +01:00
|
|
|
|
|
|
|
if(ZLIB_FOUND)
|
2015-01-27 16:44:46 +01:00
|
|
|
target_link_libraries(${mbedtls_static_target} ${ZLIB_LIBRARIES})
|
2014-03-17 15:11:13 +01:00
|
|
|
endif(ZLIB_FOUND)
|
|
|
|
|
2014-06-09 23:46:41 +02:00
|
|
|
if(LINK_WITH_PTHREAD)
|
2015-01-27 16:44:46 +01:00
|
|
|
target_link_libraries(${mbedtls_static_target} pthread)
|
2014-06-09 23:46:41 +02:00
|
|
|
endif()
|
2011-01-05 16:24:43 +01:00
|
|
|
|
2015-01-27 16:44:46 +01:00
|
|
|
install(TARGETS ${mbedtls_static_target}
|
2014-03-06 15:49:08 +01:00
|
|
|
DESTINATION ${LIB_INSTALL_DIR}
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|
|
|
|
endif()
|
2011-01-05 16:24:43 +01:00
|
|
|
|
2015-01-27 16:44:46 +01:00
|
|
|
if(USE_SHARED_MBEDTLS_LIBRARY)
|
|
|
|
add_library(mbedtls SHARED ${src})
|
2015-01-29 12:29:12 +01:00
|
|
|
set_target_properties(mbedtls PROPERTIES VERSION 1.4.0 SOVERSION 8)
|
2011-01-05 16:24:43 +01:00
|
|
|
|
2015-01-27 16:44:46 +01:00
|
|
|
target_link_libraries(mbedtls ${libs})
|
2012-05-10 23:54:28 +02:00
|
|
|
|
2014-03-06 15:49:08 +01:00
|
|
|
if(ZLIB_FOUND)
|
2015-01-27 16:44:46 +01:00
|
|
|
target_link_libraries(mbedtls ${ZLIB_LIBRARIES})
|
2014-03-06 15:49:08 +01:00
|
|
|
endif(ZLIB_FOUND)
|
2013-11-14 10:34:46 +01:00
|
|
|
|
2014-06-09 23:46:41 +02:00
|
|
|
if(LINK_WITH_PTHREAD)
|
2015-01-27 16:44:46 +01:00
|
|
|
target_link_libraries(mbedtls pthread)
|
2014-06-09 23:46:41 +02:00
|
|
|
endif()
|
|
|
|
|
2015-01-27 16:44:46 +01:00
|
|
|
install(TARGETS mbedtls
|
2014-03-06 15:49:08 +01:00
|
|
|
DESTINATION ${LIB_INSTALL_DIR}
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|
2015-01-27 16:44:46 +01:00
|
|
|
endif(USE_SHARED_MBEDTLS_LIBRARY)
|