Newer
Older
mbed-os / drivers / device_key / CMakeLists.txt
@Jamie Smith Jamie Smith on 14 Sep 2022 468 bytes Convert mbed-ble to STATIC
# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

add_library(mbed-device_key STATIC EXCLUDE_FROM_ALL)

target_include_directories(mbed-device_key
    PUBLIC
        include
        include/device_key
)

target_sources(mbed-device_key
    PRIVATE
        source/DeviceKey.cpp
)

target_link_libraries(mbed-device_key
    PUBLIC
        mbed-storage-kvstore
        mbed-storage-tdbstore
        mbed-storage-kv-global-api
)