15 lines
217 B
CMake
Executable File
15 lines
217 B
CMake
Executable File
cmake_minimum_required(VERSION 3.13)
|
|
|
|
|
|
file(GLOB_RECURSE deps *.S *.s *.C *.c)
|
|
|
|
add_library(boot_bsp STATIC ${deps})
|
|
target_include_directories(
|
|
boot_bsp
|
|
PUBLIC
|
|
)
|
|
|
|
target_link_libraries(boot_bsp
|
|
PRIVATE
|
|
)
|