Fix typo in that broke installation in cmake

closes #221
This commit is contained in:
Manuel Pégourié-Gonnard 2015-07-24 16:53:46 +02:00
parent 7ec9d44ecd
commit 6f42417ba8
2 changed files with 3 additions and 1 deletions

View file

@ -6,6 +6,8 @@ Bugfix
* Fix segfault in the benchmark program when benchmarking DHM.
* Fix build error with CMake and pre-4.5 versions of GCC (found by Hugo
Leisink).
* Fix bug in CMake lists that cause libmbedcrypto.a not to be installed
(found by Benoit Lecocq).
= mbed TLS 2.0.0 released 2015-07-13

View file

@ -131,7 +131,7 @@ if(USE_STATIC_MBEDTLS_LIBRARY)
set_target_properties(${mbedtls_static_target} PROPERTIES OUTPUT_NAME mbedtls)
target_link_libraries(${mbedtls_static_target} ${libs} ${mbedx509_static_target})
install(TARGETS ${mbedtls_static_target} ${mbedx509_static_target} ${mbedcrypt_static_target}
install(TARGETS ${mbedtls_static_target} ${mbedx509_static_target} ${mbedcrypto_static_target}
DESTINATION ${LIB_INSTALL_DIR}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
endif(USE_STATIC_MBEDTLS_LIBRARY)