13 lines
230 B
CMake
13 lines
230 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
|
|
)
|