From 2a1b47900296feaf0c55339e08664c0373109d5b Mon Sep 17 00:00:00 2001 From: Gonglja Date: Thu, 12 Jan 2023 20:42:36 +0800 Subject: [PATCH] feat(codes/c): add list.c cmake compile method --- codes/c/chapter_array_and_linkedlist/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/codes/c/chapter_array_and_linkedlist/CMakeLists.txt b/codes/c/chapter_array_and_linkedlist/CMakeLists.txt index dfa3322fb..144aa2d74 100644 --- a/codes/c/chapter_array_and_linkedlist/CMakeLists.txt +++ b/codes/c/chapter_array_and_linkedlist/CMakeLists.txt @@ -1,2 +1,3 @@ add_executable(array array.c) -add_executable(linked_list linked_list.c) \ No newline at end of file +add_executable(linked_list linked_list.c) +add_executable(list list.c) \ No newline at end of file