rp2040-projects/gfx2d/CMakeLists.txt
2025-06-09 14:44:21 -04:00

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)