mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
* refactor modules * moved esp_lvgl_port to libs/ * added missing file * fix for sim build * various sim/pc fixes * lvgl improvements * added missing cmake files
8 lines
206 B
CMake
8 lines
206 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
file(GLOB SOURCES "src/*.c")
|
|
add_executable(app-sim ${SOURCES})
|
|
target_link_libraries(app-sim PRIVATE tactility)
|
|
target_link_libraries(app-sim PRIVATE tactility-core)
|
|
|