blob: 92c1d3d61c602cce3da5647d00e3cb699e3f22dc [file] [log] [blame]
julhal013ec4c322021-02-05 17:30:49 +00001#-------------------------------------------------------------------------------
Balint Dobszay047aea82022-05-16 14:20:53 +02002# Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
julhal013ec4c322021-02-05 17:30:49 +00003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-------------------------------------------------------------------------------
Balint Dobszay047aea82022-05-16 14:20:53 +02007cmake_minimum_required(VERSION 3.18 FATAL_ERROR)
julhal013ec4c322021-02-05 17:30:49 +00008include(../../deployment.cmake REQUIRED)
9
10#-------------------------------------------------------------------------------
11# The CMakeLists.txt for building the ts-remote-test deployment for linux-pc
12#
13#-------------------------------------------------------------------------------
14include(${TS_ROOT}/environments/linux-pc/env.cmake)
15project(trusted-services LANGUAGES CXX C)
16add_executable(ts-remote-test)
17target_include_directories(ts-remote-test PRIVATE "${TOP_LEVEL_INCLUDE_DIRS}")
18
19#-------------------------------------------------------------------------------
20# Extend with components that are common across all deployments of
21# ts-remote-test
22#
23#-------------------------------------------------------------------------------
24include(../ts-remote-test.cmake REQUIRED)