mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-17 23:55:04 +00:00
- Split up `gps-generic-module` into: - `gps-generic-module` that contains only interfaces/configs/bindings (Apache license) - `gps-meshtastic-module` that contains an implementation (GPL license) - Update `LICENSE.md` for changes, but also added clarifications - Added licenses to directories where they were missing - Changed license of some test projects from GPL to Apache.
13 lines
348 B
CMake
13 lines
348 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/../../Buildscripts/module.cmake")
|
|
|
|
file(GLOB_RECURSE SOURCE_FILES "source/*.c*")
|
|
|
|
tactility_add_module(gps-meshtastic-module
|
|
SRCS ${SOURCE_FILES}
|
|
PRIV_INCLUDE_DIRS private/
|
|
INCLUDE_DIRS include/
|
|
REQUIRES TactilityKernel gps-module gps-generic-module minmea
|
|
)
|