Skip to content

Commit 5c61791

Browse files
committed
Revert "Add CMake option for explicitly link library to trusted_storage (#2)"
This reverts commit fa714db.
1 parent 82541b6 commit 5c61791

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

library/CMakeLists.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
option(USE_STATIC_MBEDTLS_LIBRARY "Build mbed TLS static library." ON)
22
option(USE_SHARED_MBEDTLS_LIBRARY "Build mbed TLS shared library." OFF)
33
option(LINK_WITH_PTHREAD "Explicitly link mbed TLS library to pthread." OFF)
4-
option(LINK_WITH_TRUSTED_STORAGE "Explicitly link mbed TLS library to trusted_storage." ON)
54

65
# Set the project root directory if it's not already defined, as may happen if
76
# the library folder is included directly by a parent project, without
@@ -126,10 +125,6 @@ if(LINK_WITH_PTHREAD)
126125
set(libs ${libs} pthread)
127126
endif()
128127

129-
if(LINK_WITH_TRUSTED_STORAGE)
130-
set(libs ${libs} trusted_storage)
131-
endif()
132-
133128
if (NOT USE_STATIC_MBEDTLS_LIBRARY AND NOT USE_SHARED_MBEDTLS_LIBRARY)
134129
message(FATAL_ERROR "Need to choose static or shared mbedtls build!")
135130
endif(NOT USE_STATIC_MBEDTLS_LIBRARY AND NOT USE_SHARED_MBEDTLS_LIBRARY)

0 commit comments

Comments
 (0)