15 lines
383 B
CMake
15 lines
383 B
CMake
|
|
file(GLOB FILELIST
|
||
|
|
src/misc.c
|
||
|
|
src/system_stm32f4xx.c
|
||
|
|
src/stm32f4xx_rcc.c
|
||
|
|
src/stm32f4xx_gpio.c
|
||
|
|
src/stm32f4xx_tim.c
|
||
|
|
src/stm32f4xx_spi.c
|
||
|
|
src/stm32f4xx_usart.c
|
||
|
|
src/stm32f4xx_dma.c
|
||
|
|
)
|
||
|
|
|
||
|
|
add_library(driver STATIC ${FILELIST})
|
||
|
|
target_include_directories(driver PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/cmsis)
|
||
|
|
target_include_directories(driver PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/inc)
|