pico-playground/scanvideo/mandelbrot/CMakeLists.txt

16 wiersze
426 B
CMake

2021-01-20 17:16:37 +00:00
if (TARGET pico_scanvideo_dpi)
add_executable(mandelbrot
mandelbrot.c
)
target_compile_definitions(mandelbrot PRIVATE
PICO_SCANVIDEO_PLANE1_VARIABLE_FRAGMENT_DMA=1
2023-02-09 23:18:42 +00:00
#TURBO_BOOST=1
2021-01-20 17:16:37 +00:00
)
target_link_libraries(mandelbrot PRIVATE
pico_stdlib
pico_scanvideo_dpi
pico_multicore)
pico_add_extra_outputs(mandelbrot)
endif ()