13 lines
406 B
CMake
13 lines
406 B
CMake
add_library(automation INTERFACE)
|
|
|
|
target_sources(automation INTERFACE
|
|
${CMAKE_CURRENT_LIST_DIR}/automation.cpp
|
|
)
|
|
|
|
target_include_directories(automation INTERFACE ${CMAKE_CURRENT_LIST_DIR})
|
|
|
|
#include(${PIMORONI_PICO_PATH}/drivers/analog/analog.cmake)
|
|
|
|
# Pull in pico libraries that we need
|
|
target_link_libraries(automation INTERFACE pico_stdlib hardware_pwm hardware_i2c pimoroni_i2c analog)
|