-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from ronanj/master
Add support for ESP-IDF component
- Loading branch information
Showing
4 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
cmake_minimum_required(VERSION 3.13) | ||
|
||
if(ESP_PLATFORM) | ||
# Build LoRaSerialization as an ESP-IDF component | ||
# required because ESP-IDF runs cmake in script mode | ||
# and needs idf_component_register() | ||
file(GLOB_RECURSE LORA_SERIALIZATION_ESP_SOURCES | ||
"src/*.*" | ||
) | ||
|
||
idf_component_register( | ||
SRCS ${LORA_SERIALIZATION_ESP_SOURCES} | ||
INCLUDE_DIRS . src | ||
) | ||
|
||
return() | ||
endif() | ||
|
||
if(CMAKE_SCRIPT_MODE_FILE) | ||
message(FATAL_ERROR "Attempted to build LoRaSerialization in script mode") | ||
endif() | ||
|
||
project(radiolib) | ||
|
||
file(GLOB_RECURSE LORA_SERIALIZATION_SOURCES | ||
"src/*.cpp" | ||
) | ||
|
||
add_library(LoRaSerialization ${LORA_SERIALIZATION_SOURCES}) | ||
|
||
target_include_directories(LoRaSerialization | ||
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src> | ||
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>) | ||
|
||
# use c++20 standard | ||
set_property(TARGET LoRaSerialization PROPERTY CXX_STANDARD 20) | ||
|
||
# enable most warnings | ||
target_compile_options(LoRaSerialization PRIVATE -Wall -Wextra) | ||
|
||
include(GNUInstallDirs) | ||
|
||
install(TARGETS LoRaSerialization | ||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} | ||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} | ||
) | ||
|
||
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/src/ | ||
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/LoRaSerialization | ||
FILES_MATCHING PATTERN "*.h" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
dependencies: | ||
idf: '>=4.1' | ||
description: LoRaWAN serialization/deserialization library for The Things Network | ||
license: MIT | ||
repository: https://github.com/thesolarnomad/lora-serialization.git | ||
tags: | ||
- LoRaWAN | ||
- encoding | ||
- serialization | ||
- deserialization | ||
version: 3.2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters