mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-19 16:35:05 +00:00
- Added generic GPS/GNSS support with device detection, configuration, and persistent settings. - Improved device and module lifecycle management. - Added flexible filesystem locking support for displays and storage. - Improved display-idle and keyboard backlight handling. - Updated architecture, driver, module, testing, and licensing documentation. - Removed old HAL device and related code.
24 lines
520 B
CMake
24 lines
520 B
CMake
project(TactilityTests)
|
|
|
|
enable_language(C CXX ASM)
|
|
|
|
|
|
file(GLOB_RECURSE TEST_SOURCES ${PROJECT_SOURCE_DIR}/Source/*.cpp)
|
|
add_executable(TactilityTests EXCLUDE_FROM_ALL ${TEST_SOURCES})
|
|
|
|
target_include_directories(TactilityTests PRIVATE ${DOCTESTINC})
|
|
|
|
add_test(NAME TactilityTests COMMAND TactilityTests)
|
|
|
|
target_link_libraries(TactilityTests PRIVATE
|
|
Tactility
|
|
TactilityKernel
|
|
platform-posix
|
|
lvgl-module
|
|
crypt-module
|
|
gps-module
|
|
gps-generic-module
|
|
lvgl
|
|
SDL2::SDL2-static SDL2-static
|
|
)
|