Imre Kis | a5a7220 | 2023-06-22 20:10:18 +0200 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # Copyright (c) 2020, Arm Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | #------------------------------------------------------------------------------- |
| 7 | if (NOT DEFINED TGT) |
| 8 | message(FATAL_ERROR "mandatory parameter TGT is not defined.") |
| 9 | endif() |
| 10 | |
| 11 | |
| 12 | set_property(TARGET ${TGT} APPEND PROPERTY PUBLIC_HEADER |
| 13 | "${CMAKE_CURRENT_LIST_DIR}/ts_rpc_caller_linux.h" |
| 14 | ) |
| 15 | |
| 16 | target_sources(${TGT} PRIVATE |
| 17 | "${CMAKE_CURRENT_LIST_DIR}/ts_rpc_caller_linux.c" |
| 18 | ) |