#------------------------------------------------------------------------------- # Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved. # # SPDX-License-Identifier: BSD-3-Clause # #------------------------------------------------------------------------------- cmake_minimum_required(VERSION 3.18 FATAL_ERROR) include(../../deployment.cmake REQUIRED) #------------------------------------------------------------------------------- # The CMakeLists.txt for building the ts-remote-test deployment for arm-linux # #------------------------------------------------------------------------------- include(${TS_ROOT}/environments/arm-linux/env.cmake) project(trusted-services LANGUAGES CXX C) add_executable(ts-remote-test) target_include_directories(ts-remote-test PRIVATE "${TOP_LEVEL_INCLUDE_DIRS}") #------------------------------------------------------------------------------- # Extend with components that are common across all deployments of # ts-remote-test # #------------------------------------------------------------------------------- include(../ts-remote-test.cmake REQUIRED) #------------------------------------------------------------------------------- # Define library options and dependencies. # #------------------------------------------------------------------------------- target_link_libraries(ts-remote-test PRIVATE stdc++ gcc m)