21 lines
376 B
CMake
21 lines
376 B
CMake
cmake_minimum_required(VERSION 3.29)
|
|
project(homework2)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
add_executable(test1 LinkList.cpp
|
|
test1.cpp
|
|
LinkList.h)
|
|
add_executable(test2 test2.cpp
|
|
LinkList.h
|
|
LinkList.cpp
|
|
)
|
|
add_executable(test3 test3.cpp
|
|
LinkList.h
|
|
LinkList.cpp
|
|
)
|
|
add_executable(test4 test4.cpp
|
|
LinkList.h
|
|
LinkList.cpp
|
|
)
|