This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
rp2040_projects/usb/CMakeLists.txt
graham sanderson 46078742c7 Initial Release
2021-01-20 16:45:01 -06:00

10 lines
283 B
CMake

if (TARGET tinyusb_device)
add_subdirectory(device)
else ()
message("Skipping TinyUSB device examples, as TinyUSB unavailable")
endif ()
if (TARGET tinyusb_host)
add_subdirectory(host)
else ()
message("Skipping TinyUSB host examples, as TinyUSB unavailable")
endif ()