Julian Hall | eff4b28 | 2020-11-23 18:24:12 +0100 | [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 | cmake_minimum_required(VERSION 3.16) |
| 8 | include(../../deployment.cmake REQUIRED) |
| 9 | |
| 10 | #------------------------------------------------------------------------------- |
| 11 | # The CMakeLists.txt for building the ts-service-test deployment for linux-pc |
| 12 | # |
| 13 | # Used for building and running service level tests in a native PC enviroment. |
| 14 | # Tests can be run by running the built executable called "ts-service-test" |
| 15 | #------------------------------------------------------------------------------- |
| 16 | include(${TS_ROOT}/environments/linux-pc/env.cmake) |
| 17 | project(trusted-services LANGUAGES CXX C) |
| 18 | add_executable(ts-service-test) |
| 19 | target_include_directories(ts-service-test PRIVATE "${TOP_LEVEL_INCLUDE_DIRS}") |
| 20 | |
| 21 | #------------------------------------------------------------------------------- |
| 22 | # Extend with components that are common across all deployments of |
| 23 | # ts-service-test |
| 24 | # |
| 25 | #------------------------------------------------------------------------------- |
| 26 | include(../ts-service-test.cmake REQUIRED) |
| 27 | |