mirror of https://github.com/ARMmbed/mbed-os.git
19 lines
354 B
CMake
19 lines
354 B
CMake
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
target_include_directories(mbed-client-cli
|
|
INTERFACE
|
|
.
|
|
./mbed-client-cli
|
|
)
|
|
|
|
target_sources(mbed-client-cli
|
|
INTERFACE
|
|
source/ns_cmdline.c
|
|
)
|
|
|
|
target_link_libraries(mbed-client-cli
|
|
INTERFACE
|
|
mbed-nanostack-libservice
|
|
)
|