kopia lustrzana https://github.com/pimoroni/pimoroni-pico
16 wiersze
421 B
CMake
16 wiersze
421 B
CMake
|
set(DRIVER_NAME pwm_cluster)
|
||
|
add_library(${DRIVER_NAME} INTERFACE)
|
||
|
|
||
|
target_sources(${DRIVER_NAME} INTERFACE
|
||
|
${CMAKE_CURRENT_LIST_DIR}/pwm_cluster.cpp
|
||
|
)
|
||
|
|
||
|
target_include_directories(${DRIVER_NAME} INTERFACE ${CMAKE_CURRENT_LIST_DIR})
|
||
|
|
||
|
target_link_libraries(${DRIVER_NAME} INTERFACE
|
||
|
pico_stdlib
|
||
|
hardware_pio
|
||
|
hardware_dma
|
||
|
)
|
||
|
|
||
|
pico_generate_pio_header(${DRIVER_NAME} ${CMAKE_CURRENT_LIST_DIR}/pwm_cluster.pio)
|