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: .github/pull_request_template.md
+7
Original file line number
Diff line number
Diff line change
@@ -18,3 +18,10 @@ Please tick as appropriate and edit the reasons (e.g.: "backport: not needed bec
18
18
19
19
Please refer to the [contributing guidelines](https://github.com/Mbed-TLS/mbedtls/blob/development/CONTRIBUTING.md), especially the
20
20
checklist for PR contributors.
21
+
22
+
Help make review efficient:
23
+
* Multiple simple commits
24
+
- please structure your PR into a series of small commits, each of which does one thing
25
+
* Avoid force-push
26
+
- please do not force-push to update your PR - just add new commit(s)
27
+
* See our [Guidelines for Contributors](https://mbed-tls.readthedocs.io/en/latest/reviews/review-for-contributors/) for more details about the review process.
if (NOTEXISTS"${CMAKE_CURRENT_SOURCE_DIR}/framework/CMakeLists.txt")
287
+
message(FATAL_ERROR "${CMAKE_CURRENT_SOURCE_DIR}/framework/CMakeLists.txt not found. Run `git submodule update --init` from the source tree to fetch the submodule contents.")
288
+
endif()
289
+
add_subdirectory(framework)
290
+
271
291
add_subdirectory(include)
272
292
273
293
add_subdirectory(3rdparty)
274
294
275
295
add_subdirectory(library)
276
296
297
+
add_subdirectory(pkgconfig)
298
+
277
299
#
278
300
# The C files in tests/src directory contain test code shared among test suites
279
301
# and programs. This shared test code is compiled and linked to test suites and
@@ -297,6 +319,8 @@ if(ENABLE_TESTING OR ENABLE_PROGRAMS)
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ License and Copyright
86
86
87
87
Unless specifically indicated otherwise in a file, Mbed TLS files are provided under a dual [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html) OR [GPL-2.0-or-later](https://spdx.org/licenses/GPL-2.0-or-later.html) license. See the [LICENSE](LICENSE) file for the full text of these licenses. This means that users may choose which of these licenses they take the code under.
88
88
89
-
Contributors must accept that their contributions are made under both the Apache-2.0 AND [GPL-2.0-or-later](https://spdx.org/licenses/GPL-2.0-or-later.html) licenses. This enables LTS (Long Term Support) branches of the software to be provided under either the Apache-2.0 or GPL-2.0-or-later licenses.
89
+
Contributors must accept that their contributions are made under both the Apache-2.0 AND [GPL-2.0-or-later](https://spdx.org/licenses/GPL-2.0-or-later.html) licenses.
90
90
91
91
All new files should include the standard SPDX license identifier where possible, i.e. "SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later".
0 commit comments