9 lines
200 B
CMake
9 lines
200 B
CMake
|
cmake_minimum_required(VERSION 3.28)
|
||
|
project(StructuresLab_CalebFontenot)
|
||
|
|
||
|
set(CMAKE_CXX_STANDARD 23)
|
||
|
|
||
|
add_executable(StructuresLab_CalebFontenot main.cpp
|
||
|
structures.cpp
|
||
|
structures.h)
|