2021-01-17 07:41:25 +00:00
|
|
|
add_executable(
|
2022-05-29 14:42:31 +01:00
|
|
|
pico_explorer_demo
|
|
|
|
pico_explorer_demo.cpp
|
2021-01-17 07:41:25 +00:00
|
|
|
)
|
|
|
|
|
2022-05-29 14:42:31 +01:00
|
|
|
add_resource(pico_explorer_demo fox.tga)
|
2021-01-17 16:59:58 +00:00
|
|
|
|
2021-01-17 07:41:25 +00:00
|
|
|
# Pull in pico libraries that we need
|
2022-06-07 19:02:30 +01:00
|
|
|
target_link_libraries(pico_explorer_demo pico_stdlib pico_explorer msa301 pico_graphics st7789 button motor analog)
|
2021-01-17 07:41:25 +00:00
|
|
|
|
|
|
|
# create map/bin/hex file etc.
|
2022-05-29 14:42:31 +01:00
|
|
|
pico_add_extra_outputs(pico_explorer_demo)
|
2021-02-23 17:07:03 +00:00
|
|
|
|
|
|
|
add_executable(
|
|
|
|
text_demo
|
|
|
|
text_demo.cpp
|
|
|
|
)
|
|
|
|
|
2022-06-07 19:02:30 +01:00
|
|
|
target_link_libraries(text_demo pico_stdlib pico_explorer msa301 pico_graphics st7789)
|
2021-02-23 17:07:03 +00:00
|
|
|
|
|
|
|
pico_add_extra_outputs(text_demo)
|