CMake: streamline kvstore support

Link KVStore dependency in Mbed OS so application projects do not have to.
pull/14065/head
Hugues Kamba 2020-12-17 13:09:38 +00:00
parent f7f13b48b7
commit eedd0b3258
2 changed files with 6 additions and 0 deletions

View File

@ -14,3 +14,8 @@ target_include_directories(mbed-storage-kvstore
include
include/kvstore
)
target_link_libraries(mbed-storage-kvstore
INTERFACE
mbed-storage-kv-global-api
)

View File

@ -17,4 +17,5 @@ target_link_libraries(mbed-storage-securestore
INTERFACE
mbed-storage-kvstore
mbed-device_key
mbed-mbedtls
)