d901d17817
* development: (100 commits) Update Changelog for the mem-measure branch Fix issues introduced when rebasing Fix compile error in memory_buffer_alloc_selftest Code cosmetics Add curve25519 to ecc-heap.sh Add curve25519 to the benchmark program Fix compile issue when buffer_alloc not available New script ecc-heap.sh Fix unused variable issue in some configs Rm usunused member in private struct Add heap usage for PK in benchmark Use memory_buffer_alloc() in benchmark if available Only define mode_func if mode is enabled (CBC etc) PKCS8 encrypted key depend on PKCS5 or PKCS12 Disable SRV_C for client measurement Output stack+heap usage with massif Enable NIST_OPTIM by default for config-suite-b Refactor memory.sh Adapt memory.sh to config-suite-b Adapt mini-client for config-suite-b.h ... Conflicts: ChangeLog include/polarssl/net.h library/Makefile library/error.c library/ssl_tls.c programs/Makefile programs/ssl/ssl_client2.c programs/ssl/ssl_server2.c tests/Makefile
62 lines
1.6 KiB
CMake
62 lines
1.6 KiB
CMake
set(THREADS_USE_PTHREADS_WIN32 true)
|
|
find_package(Threads)
|
|
|
|
set(libs
|
|
mbedtls
|
|
)
|
|
|
|
set(targets
|
|
dtls_client
|
|
dtls_server
|
|
ssl_client1
|
|
ssl_client2
|
|
ssl_server
|
|
ssl_fork_server
|
|
ssl_mail_client
|
|
mini_client
|
|
)
|
|
|
|
if(USE_PKCS11_HELPER_LIBRARY)
|
|
set(libs ${libs} pkcs11-helper)
|
|
endif(USE_PKCS11_HELPER_LIBRARY)
|
|
|
|
if(ENABLE_ZLIB_SUPPORT)
|
|
set(libs ${libs} ${ZLIB_LIBRARIES})
|
|
endif(ENABLE_ZLIB_SUPPORT)
|
|
|
|
add_executable(dtls_client dtls_client.c)
|
|
target_link_libraries(dtls_client ${libs})
|
|
|
|
add_executable(dtls_server dtls_server.c)
|
|
target_link_libraries(dtls_server ${libs})
|
|
|
|
add_executable(ssl_client1 ssl_client1.c)
|
|
target_link_libraries(ssl_client1 ${libs})
|
|
|
|
add_executable(ssl_client2 ssl_client2.c)
|
|
target_link_libraries(ssl_client2 ${libs})
|
|
|
|
add_executable(ssl_server ssl_server.c)
|
|
target_link_libraries(ssl_server ${libs})
|
|
|
|
add_executable(ssl_server2 ssl_server2.c)
|
|
target_link_libraries(ssl_server2 ${libs})
|
|
|
|
add_executable(ssl_fork_server ssl_fork_server.c)
|
|
target_link_libraries(ssl_fork_server ${libs})
|
|
|
|
add_executable(ssl_mail_client ssl_mail_client.c)
|
|
target_link_libraries(ssl_mail_client ${libs})
|
|
|
|
add_executable(mini_client mini_client.c)
|
|
target_link_libraries(mini_client ${libs})
|
|
|
|
if(THREADS_FOUND)
|
|
add_executable(ssl_pthread_server ssl_pthread_server.c)
|
|
target_link_libraries(ssl_pthread_server ${libs} ${CMAKE_THREAD_LIBS_INIT})
|
|
set(targets ${targets} ssl_pthread_server)
|
|
endif(THREADS_FOUND)
|
|
|
|
install(TARGETS ${targets}
|
|
DESTINATION "bin"
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|