Files
picovga-RGsB/examples/vga_spots/CMakeLists.txt
2023-02-26 14:09:49 -08:00

16 lines
301 B
CMake

add_executable(vga_spots
src/main.cpp
)
add_picovga(vga_spots)
# for vga_config.h include
target_include_directories(vga_spots PRIVATE
${CMAKE_CURRENT_LIST_DIR}/src
)
# create map/bin/hex file etc.
pico_add_extra_outputs(vga_spots)
# Allow stdio to USB
# pico_enable_stdio_usb(vga_spots 1)