mirror of https://github.com/ARMmbed/mbed-os.git
30 lines
547 B
CMake
30 lines
547 B
CMake
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
add_subdirectory(lorastack)
|
|
add_subdirectory(system)
|
|
|
|
target_include_directories(mbed-lorawan
|
|
INTERFACE
|
|
..
|
|
.
|
|
./include
|
|
./include/lorawan
|
|
)
|
|
|
|
target_sources(mbed-lorawan
|
|
INTERFACE
|
|
source/LoRaWANInterface.cpp
|
|
source/LoRaWANStack.cpp
|
|
)
|
|
|
|
target_compile_definitions(mbed-lorawan
|
|
INTERFACE
|
|
MBED_CONF_LORAWAN_PRESENT=1
|
|
)
|
|
|
|
target_link_libraries(mbed-lorawan
|
|
INTERFACE
|
|
mbed-events
|
|
)
|