blob: 1de737e789eb584e4e416cfeffc203ab19a0c8b0 [file] [log] [blame]
alexander31ae9f02022-02-10 16:15:54 +00001#----------------------------------------------------------------------------
2# Copyright (c) 2022 Arm Limited. All rights reserved.
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#----------------------------------------------------------------------------
17
18#######################################################
19# Header-only logging definitions as an interface lib.#
20#######################################################
21cmake_minimum_required(VERSION 3.15.6)
22
23set(BSP_LOGGING_TARGET log)
24
25project(${BSP_LOGGING_TARGET}
26 DESCRIPTION "Generic logging formatting header-only interface lib."
27 LANGUAGES C)
28
29add_library(${BSP_LOGGING_TARGET} INTERFACE)
30
31if (DEFINED LOG_LEVEL)
32 message(STATUS "Setting log level to ${LOG_LEVEL}")
33 target_compile_definitions(${BSP_LOGGING_TARGET}
34 INTERFACE
35 LOG_LEVEL=${LOG_LEVEL})
36endif()
37
38target_include_directories(${BSP_LOGGING_TARGET} INTERFACE include)
39
40message(STATUS "*******************************************************")
41message(STATUS "Library : " ${BSP_LOGGING_TARGET})
42message(STATUS "CMAKE_SYSTEM_PROCESSOR : " ${CMAKE_SYSTEM_PROCESSOR})
43message(STATUS "*******************************************************")