Kevin Peng | c32279d | 2022-02-10 11:11:55 +0800 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # Copyright (c) 2022, Arm Limited. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | #------------------------------------------------------------------------------- |
| 7 | |
| 8 | set(CONFIG_TFM_BUILD_LOG_QUIET OFF CACHE BOOL "Disable build logs") |
| 9 | |
| 10 | if(CONFIG_TFM_BUILD_LOG_QUIET) |
Georgios Vasilakis | a114b4a | 2025-04-07 16:16:32 +0200 | [diff] [blame] | 11 | # Output installation message generated by the install() command[ALWAYS,LAZY,NEVER] |
| 12 | set(CMAKE_INSTALL_MESSAGE NEVER) |
Kevin Peng | c32279d | 2022-02-10 11:11:55 +0800 | [diff] [blame] | 13 | set(CONFIG_TFM_PARTITION_QUIET ON CACHE BOOL "Disable printing of partition configuration during build") |
| 14 | set(CONFIG_TFM_MEMORY_USAGE_QUIET ON CACHE BOOL "Disable the memory usage report") |
| 15 | set(CONFIG_TFM_PARSE_MANIFEST_QUIET ON CACHE BOOL "Parse manifest quietly") |
| 16 | else() |
Georgios Vasilakis | a114b4a | 2025-04-07 16:16:32 +0200 | [diff] [blame] | 17 | # Output installation message generated by the install() command[ALWAYS,LAZY,NEVER] |
| 18 | set(CMAKE_INSTALL_MESSAGE LAZY) |
Kevin Peng | c32279d | 2022-02-10 11:11:55 +0800 | [diff] [blame] | 19 | set(CONFIG_TFM_PARTITION_QUIET OFF CACHE BOOL "Disable printing of partition configuration during build") |
| 20 | set(CONFIG_TFM_MEMORY_USAGE_QUIET OFF CACHE BOOL "Disable the memory usage report") |
| 21 | set(CONFIG_TFM_PARSE_MANIFEST_QUIET OFF CACHE BOOL "Parse manifest quietly") |
| 22 | endif() |