mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
10 lines
339 B
CMake
10 lines
339 B
CMake
|
cmake_minimum_required(VERSION 3.5)
|
||
|
|
||
|
include(${CMAKE_CURRENT_SOURCE_DIR}/../../hw/bsp/${FAMILY}/family.cmake)
|
||
|
|
||
|
project(tinyusb_host_examples)
|
||
|
family_initialize_project(tinyusb_host_examples ${CMAKE_CURRENT_LIST_DIR})
|
||
|
|
||
|
# family_add_subdirectory will filter what to actually add based on selected FAMILY
|
||
|
family_add_subdirectory(cdc_msc_hid)
|