pimoroni-pico/examples/breakout_encoder_wheel/gpio_pwm/CMakeLists.txt

14 wiersze
301 B
CMake

set(OUTPUT_NAME encoderwheel_gpio_pwm)
add_executable(${OUTPUT_NAME} gpio_pwm.cpp)
# Pull in pico libraries that we need
target_link_libraries(${OUTPUT_NAME}
pico_stdlib
breakout_encoder_wheel
)
# enable usb output
pico_enable_stdio_usb(${OUTPUT_NAME} 1)
pico_add_extra_outputs(${OUTPUT_NAME})