From f72a1c6b3f8d5d77434ce0e1ee7fe5bb49841be1 Mon Sep 17 00:00:00 2001 From: reanon <793584285@qq.com> Date: Wed, 18 Jan 2023 14:14:57 +0800 Subject: [PATCH] feat(sort): add c codes --- codes/c/chapter_sorting/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/codes/c/chapter_sorting/CMakeLists.txt b/codes/c/chapter_sorting/CMakeLists.txt index 192e1cb9..55fb65f5 100644 --- a/codes/c/chapter_sorting/CMakeLists.txt +++ b/codes/c/chapter_sorting/CMakeLists.txt @@ -1,2 +1,3 @@ add_executable(bubble_sort bubble_sort.c) +add_executable(quick_sort quick_sort.c ) add_executable(insertion_sort insertion_sort.c) \ No newline at end of file