commit | cd5380abd566bff5e141b4b2d88cf9af67471a11 | [log] [tgz] |
---|---|---|
author | Christoph M. Wintersteiger <cwinter@microsoft.com> | Thu Oct 25 12:47:03 2018 +0100 |
committer | Janos Follath <janos.follath@arm.com> | Fri Aug 23 09:57:02 2019 +0100 |
tree | 77f623691fae02e6589a323029a4745159a170c8 | |
parent | 20788e584df428275d88b2867740ffc85b9ff649 [diff] [blame] |
ECDH: Include Everest Curve25519 in build scripts
diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt index c2f2bd4..ef33fe8 100644 --- a/include/CMakeLists.txt +++ b/include/CMakeLists.txt
@@ -3,8 +3,9 @@ if(INSTALL_MBEDTLS_HEADERS) file(GLOB headers "mbedtls/*.h") + file(GLOB headers_everest "../3rdparty/everest/include/*.h") - install(FILES ${headers} + install(FILES ${headers} ${headers_everest} DESTINATION include/mbedtls PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)