9 lines
203 B
CMake
9 lines
203 B
CMake
cmake_minimum_required(VERSION 3.30)
|
|
project(homework5)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
add_executable(test1 test1.cpp
|
|
MatrixGraph.h
|
|
GraphExceptions/InsertExistedConnectException.h)
|