16 lines
404 B
CMake
Executable File
16 lines
404 B
CMake
Executable File
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
|
|
src/stm32f4xx_tim.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)
|