pimoroni-pico/examples/pico_pot_explorer/CMakeLists.txt

13 wiersze
318 B
CMake

2021-05-12 22:34:43 +00:00
set(OUTPUT_NAME potentiometer_explorer)
add_executable(
${OUTPUT_NAME}
pico_pot_explorer.cpp
2021-05-12 22:34:43 +00:00
)
# Pull in pico libraries that we need
target_link_libraries(${OUTPUT_NAME} pico_stdlib breakout_potentiometer pico_explorer pico_graphics st7789)
2021-05-12 22:34:43 +00:00
# create map/bin/hex file etc.
pico_add_extra_outputs(${OUTPUT_NAME})