mbed-os/drivers/device_key/CMakeLists.txt

21 lines
470 B
CMake
Raw Normal View History

2020-07-20 16:57:00 +00:00
# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
# This is a specific driver for the mbed-storage CMake target.
# TODO CMake: Perhaps move this/these file(s)
target_include_directories(mbed-device_key
INTERFACE
./include
./include/device_key
2020-07-20 16:57:00 +00:00
)
target_sources(mbed-device_key
INTERFACE
source/DeviceKey.cpp
)
target_link_libraries(mbed-device_key
INTERFACE
mbed-storage-kvstore
2020-07-20 16:57:00 +00:00
)