Toying around with a 4.2 in. e-Paper module from Waveshare and the Raspberry Pi Pico. Maybe it'll become a library some day.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
cmake_minimum_required(VERSION 3.13) |
|
|
|
set(CMAKE_C_STANDARD 11) |
|
set(CMAKE_CXX_STANDARD 17) |
|
|
|
project(epd C CXX ASM) |
|
|
|
file(GLOB FILES *.c *.h) |
|
|
|
add_library(${PROJECT_NAME} ${FILES})
|
|
|