mirror of
https://github.com/xusun0623/exam_code_for_408.git
synced 2026-02-03 02:14:02 +08:00
9 lines
164 B
CMake
9 lines
164 B
CMake
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)
|