pimoroni-pico/examples/breakout_ioexpander/CMakeLists.txt

13 lines
260 B
CMake
Raw Normal View History

set(OUTPUT_NAME ioexpander_demo)
add_executable(
${OUTPUT_NAME}
demo.cpp
)
# Pull in pico libraries that we need
target_link_libraries(${OUTPUT_NAME} pico_stdlib breakout_ioexpander)
# create map/bin/hex file etc.
pico_add_extra_outputs(${OUTPUT_NAME})