kopia lustrzana https://github.com/Wren6991/PicoDVI
21 wiersze
374 B
CMake
21 wiersze
374 B
CMake
add_executable(tiles_parallax
|
|
main.c
|
|
)
|
|
|
|
target_compile_options(tiles_parallax PRIVATE -Wall)
|
|
|
|
target_compile_definitions(tiles_parallax PRIVATE
|
|
DVI_DEFAULT_SERIAL_CONFIG=${DVI_DEFAULT_SERIAL_CONFIG}
|
|
)
|
|
|
|
target_link_libraries(tiles_parallax
|
|
pico_stdlib
|
|
pico_multicore
|
|
pico_util
|
|
libdvi
|
|
libsprite
|
|
)
|
|
|
|
# create map/bin/hex file etc.
|
|
pico_add_extra_outputs(tiles_parallax)
|