You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/4.0-migration-guide/repo-split.md
+15-6Lines changed: 15 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,26 +116,35 @@ You may need to update include paths to the public header files, see [File and D
116
116
117
117
#### Using Mbed TLS as a CMake subproject
118
118
119
-
The base name of the CMake cryptography library target has been changed from `mbedcrypto` to `tfpsacrypto`.
120
-
If no target prefix is specified through the `MBEDTLS_TARGET_PREFIX` option, the associated CMake target is now `tfpsacrypto`, and you will need to update it in your CMake scripts.
119
+
The base name of the libraries are now `tfpsacrypto` (formely `mbedcrypto`), `mbedx509` and `mbedtls`.
120
+
As before, these base names are also the names of CMake targets to build each library.
121
+
If your CMake scripts reference a cryptography library target, you need to update its name accordingly.
You can refer to the following example demonstrating how to consume Mbed TLS as a CMake subproject:
123
133
-`programs/test/cmake_subproject`
124
134
125
135
#### Using Mbed TLS as a CMake package
126
136
127
-
The same renaming applies to the cryptography library targets declared as part of the Mbed TLS CMake package.
128
-
When no global target prefix is defined, use `MbedTLS::tfpsacrypto` instead of `MbedTLS::mbedcrypto`.
137
+
The same renaming applies to the cryptography library targets declared as part of the Mbed TLS CMake package, use `MbedTLS::tfpsacrypto` instead of `MbedTLS::mbedcrypto`.
0 commit comments