19 lines
427 B
CMake
19 lines
427 B
CMake
|
cmake_minimum_required(VERSION 3.29)
|
||
|
project(MP6_CalebFontenot)
|
||
|
|
||
|
set(CMAKE_CXX_STANDARD 17)
|
||
|
|
||
|
add_compile_options(-fsanitize=address)
|
||
|
add_link_options(-fsanitize=address)
|
||
|
|
||
|
add_executable(MP6_CalebFontenot main.cpp
|
||
|
Employee.h
|
||
|
Employee.cpp
|
||
|
WageEmployee.h
|
||
|
SalaryEmployee.h
|
||
|
SalaryEmployee.cpp
|
||
|
WageEmployee.cpp
|
||
|
simpleMenu.cpp)
|
||
|
|
||
|
target_link_libraries(MP6_CalebFontenot ncurses)
|