included e-Paper library

cmake still not links but sees includes
This commit is contained in:
Emanuele Trabattoni
2021-05-16 15:17:40 +02:00
parent 9841da0998
commit 4e0308b0b0
41 changed files with 14130 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
# Find all source files in a single current directory
# Save the name to DIR_GUI_SRCS
aux_source_directory(. DIR_GUI_SRCS)
include_directories(../Config)
# Generate the link library
add_library(GUI ${DIR_GUI_SRCS})
target_link_libraries(GUI PUBLIC Config)