6 lines
170 B
CMake
6 lines
170 B
CMake
|
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/libc libc)
|
||
|
|
|
||
|
|
add_library(component STATIC)
|
||
|
|
target_link_libraries(component libc)
|
||
|
|
target_link_libraries(component driver)
|