diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..720145f --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ + +# 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)