pimoroni-pico/examples/breakout_bh1745/CMakeLists.txt

10 wiersze
243 B
CMake
Czysty Zwykły widok Historia

2021-01-27 11:14:25 +00:00
add_executable(
2021-07-12 14:26:41 +00:00
breakout_bh1745_demo
2021-01-27 11:14:25 +00:00
demo.cpp
)
# Pull in pico libraries that we need
2021-07-12 14:26:41 +00:00
target_link_libraries(breakout_bh1745_demo pico_stdlib hardware_spi bh1745)
2021-01-27 11:14:25 +00:00
# create map/bin/hex file etc.
2021-07-12 14:26:41 +00:00
pico_add_extra_outputs(breakout_bh1745_demo)