2024-03-25 20:54:15 -05:00
|
|
|
cmake_minimum_required(VERSION 3.29)
|
|
|
|
project(lab4-Structures_CalebFontenot)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 23)
|
2024-04-01 10:35:00 -05:00
|
|
|
add_compile_options(-fsanitize=address)
|
|
|
|
add_link_options(-fsanitize=address)
|
2024-03-25 20:54:15 -05:00
|
|
|
add_executable(lab4-Structures_CalebFontenot main.cpp
|
|
|
|
structures.h
|
|
|
|
structures.cpp)
|