diff --git a/tests/cgen/CMakeLists.txt b/tests/cgen/CMakeLists.txt index 810aef0..08a9274 100644 --- a/tests/cgen/CMakeLists.txt +++ b/tests/cgen/CMakeLists.txt @@ -8,4 +8,5 @@ add_executable(qsort_demo qsort_demo.c) add_executable(bsearch_demo bsearch_demo.c) add_executable(max_heap_int_demo max_heap_int_demo.c) add_executable(perm_demo perm_demo.c) -add_executable(comb_demo comb_demo.c) \ No newline at end of file +add_executable(comb_demo comb_demo.c) +add_executable(map_of_vector map_of_vector.c) \ No newline at end of file diff --git a/tests/cont/map_of_vector.c b/tests/cgen/map_of_vector.c similarity index 100% rename from tests/cont/map_of_vector.c rename to tests/cgen/map_of_vector.c diff --git a/tests/cont/CMakeLists.txt b/tests/cont/CMakeLists.txt index d56d4c5..02f75c9 100644 --- a/tests/cont/CMakeLists.txt +++ b/tests/cont/CMakeLists.txt @@ -3,7 +3,6 @@ add_executable(vec_dbl_demo vec_dbl_demo.c) add_executable(slist_int_queue_demo slist_int_queue_demo.c) add_executable(tmap_str_int_demo tmap_str_int_demo.c) add_executable(vec_str_demo vec_str_demo.c) -add_executable(map_of_vector map_of_vector.c) foreach(p vec_int_demo vec_dbl_demo slist_int_queue_demo tmap_str_int_demo vec_str_demo) target_link_libraries(${p} bkcgen)