pimoroni-pico/examples/pico_pot_explorer/CMakeLists.txt

13 wiersze
318 B
CMake

set(OUTPUT_NAME potentiometer_explorer)
add_executable(
${OUTPUT_NAME}
pico_pot_explorer.cpp
)
# Pull in pico libraries that we need
target_link_libraries(${OUTPUT_NAME} pico_stdlib breakout_potentiometer pico_explorer pico_graphics st7789)
# create map/bin/hex file etc.
pico_add_extra_outputs(${OUTPUT_NAME})