mirror of https://github.com/ARMmbed/mbed-os.git
23 lines
525 B
CMake
23 lines
525 B
CMake
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# List of all optional platform libraries available.
|
|
add_library(mbed-psa INTERFACE)
|
|
|
|
if("EXPERIMENTAL_API" IN_LIST MBED_TARGET_LABELS)
|
|
add_subdirectory(FEATURE_EXPERIMENTAL_API)
|
|
endif()
|
|
|
|
add_subdirectory(cxxsupport)
|
|
add_subdirectory(mbed-trace)
|
|
add_subdirectory(randlib)
|
|
add_subdirectory(source)
|
|
|
|
target_include_directories(mbed-core
|
|
INTERFACE
|
|
include
|
|
include/platform
|
|
include/platform/internal
|
|
)
|
|
|