blob: 52a5834795613ef4723e621c4fa9994b680d0c7a [file] [log] [blame]
Julian Hall4834e632021-05-26 15:33:06 +01001#-------------------------------------------------------------------------------
2# Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-------------------------------------------------------------------------------
7cmake_minimum_required(VERSION 3.16)
8include(../../deployment.cmake REQUIRED)
9
10#-------------------------------------------------------------------------------
11# The CMakeLists.txt for building the platform-inspect deployment for linux-pc
12#
13#-------------------------------------------------------------------------------
14include(${TS_ROOT}/environments/linux-pc/env.cmake)
15project(trusted-services LANGUAGES CXX C)
16add_executable(platform-inspect)
17target_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#-------------------------------------------------------------------------------
24include(../platform-inspect.cmake REQUIRED)