mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-24 05:42:57 +08:00
9 lines
213 B
CMake
9 lines
213 B
CMake
if (NOT TARGET freertos_config)
|
|
add_library(freertos_config INTERFACE)
|
|
|
|
# add path to FreeRTOSConfig.h
|
|
target_include_directories(freertos_config SYSTEM INTERFACE
|
|
${CMAKE_CURRENT_LIST_DIR}
|
|
)
|
|
endif()
|