From ba562f2201b6c30e15e1560c0d861eada4017995 Mon Sep 17 00:00:00 2001 From: xusun000 <2235861811@qq.com> Date: Mon, 29 Nov 2021 13:10:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0CMake?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 0 CMakeLists.txt | 8 ++++++++ 2 files changed, 8 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt 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)