mirror of https://github.com/ARMmbed/mbed-os.git
20 lines
451 B
CMake
20 lines
451 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
add_library(mbed-nanostack-sal-stack-event-loop INTERFACE)
|
|
|
|
target_include_directories(mbed-nanostack-sal-stack-event-loop
|
|
INTERFACE
|
|
.
|
|
./nanostack-event-loop
|
|
./nanostack-event-loop/platform
|
|
./source
|
|
)
|
|
|
|
target_sources(mbed-nanostack-sal-stack-event-loop
|
|
INTERFACE
|
|
source/event.c
|
|
source/ns_timeout.c
|
|
source/ns_timer.c
|
|
source/system_timer.c
|
|
)
|