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