mirror of
https://github.com/No-Chicken/Power-Pico.git
synced 2026-04-03 13:02:36 +08:00
12 lines
213 B
CMake
12 lines
213 B
CMake
# gui/CMakeLists.txt
|
|
file(GLOB GUI_SOURCES
|
|
"*.cpp"
|
|
"*.c"
|
|
"*.cxx"
|
|
"*.cc"
|
|
)
|
|
|
|
add_library(guilib STATIC ${GUI_SOURCES})
|
|
|
|
target_include_directories(guilib PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../lvgl)
|