Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions connectivity/drivers/lora/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,7 @@ endif()
if("SX1276" IN_LIST MBED_TARGET_LABELS)
add_subdirectory(COMPONENT_SX1276)
endif()

if("STM32WL" IN_LIST MBED_TARGET_LABELS)
add_subdirectory(TARGET_STM32WL)
endif()
12 changes: 12 additions & 0 deletions connectivity/drivers/lora/TARGET_STM32WL/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

target_include_directories(mbed-lorawan
INTERFACE
.
)

target_sources(mbed-lorawan
INTERFACE
STM32WL_LoRaRadio.cpp
)
Loading