Julian Hall | 4834e63 | 2021-05-26 15:33:06 +0100 | [diff] [blame^] | 1 | #------------------------------------------------------------------------------- |
| 2 | # Copyright (c) 2021, 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 platform-inspect deployment for linux-pc |
| 12 | # |
| 13 | #------------------------------------------------------------------------------- |
| 14 | include(${TS_ROOT}/environments/linux-pc/env.cmake) |
| 15 | project(trusted-services LANGUAGES CXX C) |
| 16 | add_executable(platform-inspect) |
| 17 | target_include_directories(platform-inspect PRIVATE "${TOP_LEVEL_INCLUDE_DIRS}") |
| 18 | |
| 19 | #------------------------------------------------------------------------------- |
| 20 | # Extend with components that are common across all deployments of |
| 21 | # platform-inspect |
| 22 | # |
| 23 | #------------------------------------------------------------------------------- |
| 24 | include(../platform-inspect.cmake REQUIRED) |