mirror of
https://github.com/hrvach/deskhop.git
synced 2024-11-22 07:43:51 +01:00
27 lines
608 B
CMake
27 lines
608 B
CMake
set(lib_name pico_pio_usb)
|
|
add_library(${lib_name} INTERFACE)
|
|
|
|
set(dir ${CMAKE_CURRENT_LIST_DIR}/src)
|
|
|
|
pico_generate_pio_header(${lib_name} ${dir}/usb_tx.pio)
|
|
pico_generate_pio_header(${lib_name} ${dir}/usb_rx.pio)
|
|
|
|
target_sources(${lib_name} INTERFACE
|
|
${dir}/pio_usb.c
|
|
${dir}/pio_usb_device.c
|
|
${dir}/pio_usb_host.c
|
|
${dir}/usb_crc.c
|
|
)
|
|
|
|
target_link_libraries(${lib_name} INTERFACE
|
|
pico_stdlib
|
|
pico_multicore
|
|
hardware_pio
|
|
hardware_dma
|
|
)
|
|
|
|
target_include_directories(${lib_name} INTERFACE ${dir})
|
|
|
|
# enable all warnings
|
|
target_compile_options(${lib_name} INTERFACE -Wall -Wextra)
|