12 lines
244 B
CMake
12 lines
244 B
CMake
|
|
# FIFO Buffer
|
|
add_library(FIFOBuffChar FIFOBuff/FIFOBuffChar.c)
|
|
|
|
# CMD List
|
|
add_library(CMDList CMDList/CMDList.c)
|
|
add_library(CMDListPrint CMDList/printList.c)
|
|
|
|
# CLI
|
|
add_library(CLI CLI/CLI.c)
|
|
target_link_libraries(CLI CMDList FIFOBuffChar)
|