cmake_minimum_required(VERSION 3.21)
project(cpp11)

set(CMAKE_CXX_STANDARD 14)

add_executable(cpp11 main.cpp Student.cpp Student.h)
