18 lines
456 B
CMake
18 lines
456 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
project(MP2_CalebFontenot_clion)
|
|
|
|
set(CMAKE_CXX_STANDARD 23)
|
|
|
|
add_executable(MP2_CalebFontenot_clion main.cpp
|
|
rockPaperScissors.cpp
|
|
2DArrayOperations.cpp
|
|
2DArrayOperations.h
|
|
binarySearch.cpp
|
|
colormap.cpp
|
|
colormap.h
|
|
binarySearch.h
|
|
)
|
|
add_link_options(-fsanitize=address)
|
|
set(CMAKE_CXX_FLAGS "-fsanitize=address -lncurses -fpermissive")
|
|
set(CMAKE_BUILD_TYPE "Debug")
|