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.
44 lines
1.1 KiB
44 lines
1.1 KiB
# Generated Cmake Pico project file |
|
|
|
cmake_minimum_required(VERSION 3.13) |
|
|
|
set(CMAKE_C_STANDARD 11) |
|
set(CMAKE_CXX_STANDARD 17) |
|
|
|
# Initialise pico_sdk from installed location |
|
# (note this can come from environment, CMake cache etc) |
|
include($ENV{PICO_SDK_PATH}/external/pico_sdk_import.cmake) |
|
|
|
# Pull in Raspberry Pi Pico SDK (must be before project) |
|
include(pico_sdk_import.cmake) |
|
|
|
project(epaper C CXX ASM) |
|
|
|
# Initialise the Raspberry Pi Pico SDK |
|
pico_sdk_init() |
|
|
|
add_subdirectory(./epd) |
|
|
|
# Add executable. Default name is the project name, version 0.1 |
|
|
|
add_executable(${PROJECT_NAME} epaper.c epd0.c) |
|
|
|
pico_set_program_name(${PROJECT_NAME} "epaper") |
|
pico_set_program_version(${PROJECT_NAME} "0.1") |
|
|
|
pico_enable_stdio_uart(${PROJECT_NAME} 1) |
|
pico_enable_stdio_usb(${PROJECT_NAME} 0) |
|
|
|
# Add the standard library to the build |
|
target_link_libraries(${PROJECT_NAME} pico_stdlib epd) |
|
|
|
# Add any user requested libraries |
|
target_link_libraries(${PROJECT_NAME} |
|
hardware_spi |
|
hardware_dma |
|
hardware_pio |
|
hardware_timer |
|
) |
|
|
|
pico_add_extra_outputs(${PROJECT_NAME}) |
|
|
|
|