Files
passr-firmware/pico_hal/waveshare/c/lib/e-Paper/CMakeLists.txt
2023-05-17 00:34:13 +01:00

9 lines
280 B
CMake

# Find all source files in a single current directory
# Save the name to DIR_ePaper_SRCS
aux_source_directory(. DIR_ePaper_SRCS)
include_directories(../Config)
# Generate the link library
add_library(ePaper ${DIR_ePaper_SRCS})
target_link_libraries(ePaper PUBLIC Config)