blob: f7e391f4192f239752bd18a4600276ad587d668b [file] [log] [blame]
Gyorgy Szing49091802020-11-24 00:33:09 +01001#-------------------------------------------------------------------------------
Andrew Beggs97a00d42021-06-15 15:45:46 +00002# Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.
Gyorgy Szing49091802020-11-24 00:33:09 +01003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-------------------------------------------------------------------------------
7
8if (NOT DEFINED TGT)
9 message(FATAL_ERROR "mandatory parameter TGT is not defined.")
10endif()
11
12target_sources(${TGT} PRIVATE
13 "${CMAKE_CURRENT_LIST_DIR}/libsp_entry.c"
14 )
Andrew Beggs97a00d42021-06-15 15:45:46 +000015
16target_include_directories(${TGT}
17 PUBLIC
18 "${CMAKE_CURRENT_LIST_DIR}/include"
19 )