# # Arm SCP/MCP Software # Copyright (c) 2022, Arm Limited and Contributors. All rights reserved. # # SPDX-License-Identifier: BSD-3-Clause # # # Create the firmware target. # add_executable(rdfremont-lcp-bl2) target_include_directories( rdfremont-lcp-bl2 PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/../include" "${CMAKE_CURRENT_SOURCE_DIR}") # cmake-lint: disable=E1122 target_sources( rdfremont-lcp-bl2 PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/config_armv8m_mpu.c" "${CMAKE_CURRENT_SOURCE_DIR}/config_pl011.c" "${CMAKE_CURRENT_SOURCE_DIR}/config_transport.c" "${CMAKE_CURRENT_SOURCE_DIR}/config_mhu3.c") # # Some of our firmware includes require CMSIS. # target_link_libraries(rdfremont-lcp-bl2 PUBLIC cmsis::core-m) # # We explicitly add the CMSIS include directories to our interface include # directories. Each module target adds these include directories to their own, # allowing them to include any firmware includes we expose. # target_include_directories(rdfremont-lcp-bl2 PUBLIC $)