blob: a6934ebed3fd38d7178e76396e1cf5ad4394950c [file] [log] [blame]
Gyorgy Szing2b7d6622022-02-08 17:51:50 +00001#-------------------------------------------------------------------------------
2# Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-------------------------------------------------------------------------------
7
Gyorgy Szing2b7d6622022-02-08 17:51:50 +00008set(CMAKE_TOOLCHAIN_FILE "@TS_EXTERNAL_LIB_TOOLCHAIN_FILE@" CACHE STRING "")
9
10set(TOOLCHAIN INHERIT CACHE STRING "")
11set(PSA_INCLUDE_PATHS "@PSA_ARCH_TESTS_EXTERNAL_INCLUDE_PATHS@" CACHE STRING "")
12set(SUITE "@TS_ARCH_TEST_SUITE@" CACHE STRING "")
13set(ARCH_TEST_EXTERNAL_DEFS "@PSA_ARCH_TEST_EXTERNAL_DEFS@" CACHE STRING "")
14set(CMAKE_VERBOSE_MAKEFILE OFF CACHE BOOL "")
15set(TARGET "tgt_dev_apis_linux" CACHE STRING "")
Gabor Toth350452a2024-06-19 12:35:08 +020016set(BRANCH_PROTECTION @BRANCH_PROTECTION@ CACHE STRING "")
Gyorgy Szing2b7d6622022-02-08 17:51:50 +000017
18# Pass comand line paramter passed to the TS deployment configuration time over to psa-acs build.
19if(NOT "@PSA_TARGET_QCBOR@" STREQUAL "")
20 set(PSA_TARGET_QCBOR "@PSA_TARGET_QCBOR@" CACHE PATH "QCBOR source location for psa-acs.")
21endif()
22
23# Allow setting the QCBOR source-code location for psa-acs in the environment
24# Get the value during psa-acs build from the environment if present.
25if (DEFINED ENV{PSA_TARGET_QCBOR})
26 set(PSA_TARGET_QCBOR $ENV{PSA_TARGET_QCBOR} CACHE PATH "QCBOR source location for psa-acs.")
27endif()