commit | 9e5bb477ba6a8da7626c50267cb90cc3b06b5dd7 | [log] [tgz] |
---|---|---|
author | Etienne Carriere <etienne.carriere@foss.st.com> | Fri Jan 24 11:30:48 2025 +0100 |
committer | Jerome Forissier <jerome@forissier.org> | Tue Jan 28 19:40:04 2025 +0100 |
tree | 5456fd3a0273886bc0eed77fc42ac19826f8067d | |
parent | 68e330261f94ad7f297b1eb377dff7c2391347a0 [diff] |
br-ext: add missing required CMake commands Add cmake_minimum_required() and project() commands in br-ext CMakeLists.txt file that are missing to lead to build warnings messages like below: CMake Warning (dev) in CMakeLists.txt: No cmake_minimum_required command is present. A line of code such as cmake_minimum_required(VERSION 3.22) should be added at the top of the file. The version specified may be lower if you wish to support older CMake versions for this project. For more information run "cmake --help-policy CMP0000". This warning is for project developers. Use -Wno-dev to suppress it. CMake Warning (dev) in CMakeLists.txt: No project() command is present. The top-level CMakeLists.txt file must contain a literal, direct call to the project() command. Add a line of code such as project(ProjectName) near the top of the file, but after cmake_minimum_required(). CMake is pretending there is a "project(Project)" command on the first line. This warning is for project developers. Use -Wno-dev to suppress it. Signed-off-by: Etienne Carriere <etienne.carriere@foss.st.com> Acked-by: Jens Wiklander <jens.wiklander@linaro.org> Acked-by: Jerome Forissier <jerome.forissier@linaro.org>
This git contains makefiles etc to be able to build a full OP-TEE developer setup for the OP-TEE project.
All official OP-TEE documentation has moved to http://optee.readthedocs.io. The pages that used to be here in this git can be found under build and Device specific information at he new location for the OP-TEE documentation.
// OP-TEE core maintainers