diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..3b756f0 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.20) +project(exam_code_for_408) + +set(CMAKE_CXX_STANDARD 14) + +add_executable(exam_code_for_408 + main.cpp + newMain.cpp)