2022-09-29 12:01:35 +01:00
|
|
|
set(OUTPUT_NAME gfx_pack_demo)
|
|
|
|
|
|
|
|
add_executable(
|
|
|
|
${OUTPUT_NAME}
|
|
|
|
gfx_demo.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
# Pull in pico libraries that we need
|
2022-11-02 20:43:07 +00:00
|
|
|
target_link_libraries(${OUTPUT_NAME} pico_stdlib gfx_pack pico_graphics)
|
2022-09-29 12:01:35 +01:00
|
|
|
|
|
|
|
# create map/bin/hex file etc.
|
|
|
|
pico_add_extra_outputs(${OUTPUT_NAME})
|