diff --git a/homework2/CMakeLists.txt b/homework2/CMakeLists.txt index a367765..b651fc5 100644 --- a/homework2/CMakeLists.txt +++ b/homework2/CMakeLists.txt @@ -3,6 +3,10 @@ project(homework2) set(CMAKE_CXX_STANDARD 20) -add_executable(test1 LinkLits.cpp +add_executable(test1 LinkList.cpp test1.cpp LinkList.h) +add_executable(test2 test2.cpp + LinkList.h + LinkList.cpp +) diff --git a/homework2/LinkLits.cpp b/homework2/LinkList.cpp similarity index 100% rename from homework2/LinkLits.cpp rename to homework2/LinkList.cpp diff --git a/homework2/test2.cpp b/homework2/test2.cpp new file mode 100644 index 0000000..124ab1a --- /dev/null +++ b/homework2/test2.cpp @@ -0,0 +1,2 @@ +#include +#include"LinkList.h"