13 lines
416 B
CMake
13 lines
416 B
CMake
|
|
# Find all source files in a single current directory
|
|
|
|
# Save the name to DIR_Config_SRCS
|
|
aux_source_directory(. DIR_Config_SRCS)
|
|
|
|
include_directories(../epaper/Config)
|
|
include_directories(../epaper/e-Paper)
|
|
include_directories(../epaper/Fonts)
|
|
|
|
# Generate the link library
|
|
add_library(Mare ${DIR_Config_SRCS})
|
|
target_link_libraries(Mare PUBLIC Config ePaper Fonts pico_stdlib pico_printf pico_mem_ops hardware_spi) |