pimoroni-pico/examples/pico_display/CMakeLists.txt

11 lines
305 B
CMake
Raw Normal View History

2021-01-15 18:19:39 +00:00
add_executable(
pico_display_demo
2021-01-15 18:19:39 +00:00
demo.cpp
image_data.cpp
)
# Pull in pico libraries that we need
target_link_libraries(pico_display_demo pico_stdlib hardware_spi hardware_pwm hardware_dma rgbled pico_display generic_st7789)
2021-01-15 18:19:39 +00:00
# create map/bin/hex file etc.
pico_add_extra_outputs(pico_display_demo)