blob: 19f152c85b2b04705aa1ca4831221e96bc1ef673 [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# HAL library #
20#########################################################
21
22cmake_minimum_required(VERSION 3.15.6)
23
24set(HAL_TARGET hal)
25
26project(${HAL_TARGET}
27 DESCRIPTION "HAL library"
28 LANGUAGES C CXX)
29
30# Create static library
31add_library(${HAL_TARGET} STATIC)
32
33# Select which profile needs to be used:
34if (${CMAKE_CROSSCOMPILING})
35 set(PLATFORM_PROFILE bare-metal)
36else()
37 set(PLATFORM_PROFILE native)
38endif()
39
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +000040set(PLATFORM_PROFILE_DIR source/profiles/${PLATFORM_PROFILE})
alexander31ae9f02022-02-10 16:15:54 +000041
42## Common include directories - public
43target_include_directories(${HAL_TARGET}
44 PUBLIC
45 include
Kshitij Sisodiaa1256e32022-02-23 14:40:45 +000046 ${PLATFORM_PROFILE_DIR}/timer/include)
alexander31ae9f02022-02-10 16:15:54 +000047
48## Common sources for all profiles
49target_sources(${HAL_TARGET}
50 PRIVATE
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +000051 source/hal.c
52 source/data_psn.c
53 source/data_acq.c
Kshitij Sisodiaa1256e32022-02-23 14:40:45 +000054 ${PLATFORM_PROFILE_DIR}/timer/platform_timer.c)
alexander31ae9f02022-02-10 16:15:54 +000055
56if (DEFINED VERIFY_TEST_OUTPUT)
57 message(STATUS "Test output verification flag is: ${VERIFY_TEST_OUTPUT}")
58 target_compile_definitions(${HAL_TARGET} PUBLIC
59 VERIFY_TEST_OUTPUT=${VERIFY_TEST_OUTPUT})
60endif ()
61
Kshitij Sisodiaa1256e32022-02-23 14:40:45 +000062if (NOT DEFINED PLATFORM_DRIVERS_DIR)
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +000063 message(FATAL_ERROR "PLATFORM_DRIVERS_DIR undefined")
alexander31ae9f02022-02-10 16:15:54 +000064endif()
65
Kshitij Sisodiad5679cc2022-03-03 16:30:07 +000066# Add platform_drivers target
Kshitij Sisodiaa1256e32022-02-23 14:40:45 +000067add_subdirectory(${PLATFORM_DRIVERS_DIR} ${CMAKE_BINARY_DIR}/platform_driver)
68
69# Link time library targets:
70target_link_libraries(${HAL_TARGET}
71 PUBLIC
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +000072 log # Logging functions
73 lcd_iface # LCD interface
74 stdout_iface # Standard output (and error) interface
75 platform_drivers # Platform drivers implementing the required interfaces
76)
Kshitij Sisodiaa1256e32022-02-23 14:40:45 +000077
alexander31ae9f02022-02-10 16:15:54 +000078# Display status:
79message(STATUS "CMAKE_CURRENT_SOURCE_DIR: " ${CMAKE_CURRENT_SOURCE_DIR})
80message(STATUS "*******************************************************")
81message(STATUS "Library : " ${HAL_TARGET})
82message(STATUS "CMAKE_SYSTEM_PROCESSOR : " ${CMAKE_SYSTEM_PROCESSOR})
83message(STATUS "*******************************************************")