13 lines
258 B
CMake
13 lines
258 B
CMake
cmake_minimum_required(VERSION 3.13...3.27)
|
|
|
|
add_executable(dvi-example
|
|
src/dvi_out_hstx_encoder.c
|
|
)
|
|
|
|
target_include_directories(dvi-example PRIVATE src)
|
|
target_link_libraries(dvi-example
|
|
pico_ice_sdk
|
|
hardware_dma
|
|
)
|
|
pico_add_extra_outputs(dvi-example)
|