From af2aeb0897987f8af154c07e3dbc9b382896b0f4 Mon Sep 17 00:00:00 2001 From: xianii Date: Thu, 14 Sep 2023 03:39:22 +0800 Subject: [PATCH] Remove duplication in cmake (#756) * remove duplication in cmakelists * Update CMakeLists.txt --------- Co-authored-by: Yudong Jin --- codes/c/chapter_computational_complexity/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/codes/c/chapter_computational_complexity/CMakeLists.txt b/codes/c/chapter_computational_complexity/CMakeLists.txt index 9698a3bd6..dcfa063c3 100644 --- a/codes/c/chapter_computational_complexity/CMakeLists.txt +++ b/codes/c/chapter_computational_complexity/CMakeLists.txt @@ -1,6 +1,5 @@ add_executable(iteration iteration.c) +add_executable(recursion recursion.c) add_executable(time_complexity time_complexity.c) add_executable(worst_best_time_complexity worst_best_time_complexity.c) add_executable(space_complexity space_complexity.c) -add_executable(iteration iteration.c) -add_executable(recursion recursion.c) \ No newline at end of file