13 lines
229 B
CMake
13 lines
229 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
|
|
add_executable(gfx2d
|
|
src/main.cpp
|
|
)
|
|
|
|
target_link_libraries(gfx2d common picoled hardware_pwm)
|
|
|
|
pico_enable_stdio_uart(gfx2d 0)
|
|
pico_enable_stdio_usb(gfx2d 1)
|
|
|
|
pico_add_extra_outputs(gfx2d)
|