10 lines
280 B
CMake
10 lines
280 B
CMake
cmake_minimum_required(VERSION 3.29)
|
|
project(lab4-Structures_CalebFontenot)
|
|
|
|
set(CMAKE_CXX_STANDARD 23)
|
|
add_compile_options(-fsanitize=address)
|
|
add_link_options(-fsanitize=address)
|
|
add_executable(lab4-Structures_CalebFontenot main.cpp
|
|
structures.h
|
|
structures.cpp)
|