2014-03-06 15:49:08 +01:00
|
|
|
option(USE_STATIC_POLARSSL_LIBRARY "Build PolarSSL static library." ON)
|
|
|
|
option(USE_SHARED_POLARSSL_LIBRARY "Build PolarSSL shared library." OFF)
|
2011-01-05 16:24:43 +01:00
|
|
|
|
|
|
|
set(src
|
2009-07-11 21:54:40 +02:00
|
|
|
aes.c
|
2009-06-28 23:50:27 +02:00
|
|
|
arc4.c
|
2011-11-10 15:43:23 +01:00
|
|
|
asn1parse.c
|
2012-02-14 00:11:30 +01:00
|
|
|
asn1write.c
|
2009-07-11 21:54:40 +02:00
|
|
|
base64.c
|
|
|
|
bignum.c
|
2012-07-04 13:02:11 +02:00
|
|
|
blowfish.c
|
2009-07-11 21:54:40 +02:00
|
|
|
camellia.c
|
2009-06-28 23:50:27 +02:00
|
|
|
certs.c
|
2011-01-06 16:37:30 +01:00
|
|
|
cipher.c
|
|
|
|
cipher_wrap.c
|
2011-11-27 15:46:59 +01:00
|
|
|
ctr_drbg.c
|
2009-07-11 21:54:40 +02:00
|
|
|
debug.c
|
|
|
|
des.c
|
2009-06-28 23:50:27 +02:00
|
|
|
dhm.c
|
2011-12-03 22:45:14 +01:00
|
|
|
entropy.c
|
|
|
|
entropy_poll.c
|
2011-05-09 18:17:09 +02:00
|
|
|
error.c
|
2012-03-20 14:50:09 +01:00
|
|
|
gcm.c
|
2009-07-11 21:54:40 +02:00
|
|
|
havege.c
|
2011-01-06 15:20:01 +01:00
|
|
|
md.c
|
|
|
|
md_wrap.c
|
2009-07-11 21:54:40 +02:00
|
|
|
md2.c
|
2009-06-28 23:50:27 +02:00
|
|
|
md4.c
|
2009-07-11 21:54:40 +02:00
|
|
|
md5.c
|
|
|
|
net.c
|
|
|
|
padlock.c
|
2012-08-23 15:03:18 +02:00
|
|
|
pbkdf2.c
|
2011-02-25 10:48:49 +01:00
|
|
|
pem.c
|
2013-06-14 12:06:45 +02:00
|
|
|
pkcs5.c
|
2011-01-18 17:18:38 +01:00
|
|
|
pkcs11.c
|
2013-06-12 13:18:15 +02:00
|
|
|
pkcs12.c
|
2009-07-11 21:54:40 +02:00
|
|
|
rsa.c
|
|
|
|
sha1.c
|
|
|
|
sha2.c
|
2009-06-28 23:50:27 +02:00
|
|
|
sha4.c
|
2012-09-25 23:55:46 +02:00
|
|
|
ssl_cache.c
|
2009-07-11 21:54:40 +02:00
|
|
|
ssl_cli.c
|
|
|
|
ssl_srv.c
|
|
|
|
ssl_tls.c
|
|
|
|
timing.c
|
2010-06-19 00:47:29 +02:00
|
|
|
version.c
|
2009-07-11 21:54:40 +02:00
|
|
|
x509parse.c
|
2012-03-20 14:41:33 +01:00
|
|
|
x509write.c
|
2009-07-11 21:54:40 +02:00
|
|
|
xtea.c
|
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)
|
|
|
|
|
2014-03-06 15:49:08 +01:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCC)
|
|
|
|
set(CMAKE_C_FLAGS_CHECK "${CMAKE_C_FLAGS_CHECK} -Wmissing-declarations -Wmissing-prototypes")
|
|
|
|
set(CMAKE_C_FLAGS_CHECKFULL "${CMAKE_C_FLAGS_CHECK} -Wcast-qual")
|
|
|
|
endif(CMAKE_COMPILER_IS_GNUCC)
|
2011-01-05 16:24:43 +01:00
|
|
|
|
2014-03-06 15:49:08 +01:00
|
|
|
if (NOT USE_STATIC_POLARSSL_LIBRARY AND NOT USE_SHARED_POLARSSL_LIBRARY)
|
|
|
|
message(FATAL_ERROR "Need to choose static or shared polarssl build!")
|
|
|
|
endif(NOT USE_STATIC_POLARSSL_LIBRARY AND NOT USE_SHARED_POLARSSL_LIBRARY)
|
2011-01-05 16:24:43 +01:00
|
|
|
|
2014-03-06 15:49:08 +01:00
|
|
|
if(USE_STATIC_POLARSSL_LIBRARY AND USE_SHARED_POLARSSL_LIBRARY)
|
|
|
|
# if we build both static an shared, then let
|
|
|
|
# tests and programs link to the shared lib target
|
|
|
|
set(polarssl_static_target "polarssl_static")
|
|
|
|
elseif(USE_STATIC_POLARSSL_LIBRARY)
|
|
|
|
set(polarssl_static_target "polarssl")
|
|
|
|
endif()
|
2011-01-05 16:24:43 +01:00
|
|
|
|
2014-03-06 15:49:08 +01:00
|
|
|
if(USE_STATIC_POLARSSL_LIBRARY)
|
|
|
|
add_library(${polarssl_static_target} STATIC ${src})
|
|
|
|
set_target_properties(${polarssl_static_target} PROPERTIES OUTPUT_NAME polarssl)
|
2014-03-17 15:11:13 +01:00
|
|
|
target_link_libraries(${polarssl_static_target} ${libs})
|
|
|
|
|
|
|
|
if(ZLIB_FOUND)
|
|
|
|
target_link_libraries(${polarssl_static_target} ${ZLIB_LIBRARIES})
|
|
|
|
endif(ZLIB_FOUND)
|
|
|
|
|
2011-01-05 16:24:43 +01:00
|
|
|
|
2014-03-06 15:49:08 +01:00
|
|
|
install(TARGETS ${polarssl_static_target}
|
|
|
|
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
|
|
|
|
2014-03-06 15:49:08 +01:00
|
|
|
if(USE_SHARED_POLARSSL_LIBRARY)
|
|
|
|
add_library(polarssl SHARED ${src})
|
2014-10-24 10:42:25 +02:00
|
|
|
set_target_properties(polarssl PROPERTIES VERSION 1.2.12 SOVERSION 3)
|
2012-05-10 23:54:28 +02:00
|
|
|
|
2014-03-06 15:49:08 +01:00
|
|
|
target_link_libraries(polarssl ${libs})
|
|
|
|
|
|
|
|
if(ZLIB_FOUND)
|
|
|
|
target_link_libraries(polarssl ${ZLIB_LIBRARIES})
|
|
|
|
endif(ZLIB_FOUND)
|
|
|
|
|
|
|
|
install(TARGETS polarssl
|
|
|
|
DESTINATION ${LIB_INSTALL_DIR}
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|
|
|
|
endif(USE_SHARED_POLARSSL_LIBRARY)
|