mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-29 04:20:20 +00:00
26 lines
814 B
CMake
26 lines
814 B
CMake
if(DEFINED BSP)
|
|
set( BSP_SOURCE_DIR ${PROJECT_SOURCE_DIR}/Drivers/BSP )
|
|
include_directories(${BSP_SOURCE_DIR}/${BSP})
|
|
|
|
# Locate sources
|
|
file(GLOB BSP_SOURCES ${BSP_SOURCE_DIR}/${BSP}/*.c)
|
|
|
|
# Add components
|
|
# BSP_COMPONENTS should be a list of components to be included
|
|
foreach(COMPONENT ${BSP_COMPONENTS})
|
|
include_directories(${BSP_SOURCE_DIR}/Components/${COMPONENT}/)
|
|
file(GLOB_RECURSE COMPONENT_SOURCES ${BSP_SOURCE_DIR}/Components/${COMPONENT}/*.c)
|
|
set(BSP_COMPONENT_SOURCES ${BSP_COMPONENT_SOURCES} ${COMPONENT_SOURCES})
|
|
endforeach(COMPONENT)
|
|
|
|
# Create bsp library
|
|
add_library(bsp ${BSP_SOURCES} ${BSP_COMPONENT_SOURCES})
|
|
|
|
target_link_libraries(bsp stm32cubemx)
|
|
|
|
# Add library to the build
|
|
set(LIBS ${LIBS} bsp)
|
|
|
|
endif(DEFINED BSP)
|
|
|