2021-03-30 13:51:00 +01:00
|
|
|
set(OUTPUT_NAME roundlcd_demo)
|
|
|
|
|
|
|
|
add_executable(
|
|
|
|
${OUTPUT_NAME}
|
2022-05-29 14:42:31 +01:00
|
|
|
roundlcd_demo.cpp
|
2021-03-30 13:51:00 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
# Pull in pico libraries that we need
|
2022-06-07 19:02:30 +01:00
|
|
|
target_link_libraries(${OUTPUT_NAME} pico_stdlib pico_graphics st7789)
|
2021-03-30 13:51:00 +01:00
|
|
|
|
|
|
|
# create map/bin/hex file etc.
|
|
|
|
pico_add_extra_outputs(${OUTPUT_NAME})
|