blob: 616ab2d7b8b79c3979cc73c361b51baf421b0433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
cmake_minimum_required(VERSION 3.2.0)
set(CMAKE_EXPORT_COMPILE_COMMANDS 1)
set(CMAKE_CXX_STANDARD 20)
project(game-of-life CXX)
file(GLOB SOURCES
src/game_of_life.cpp
src/conversion.cpp
src/randomization.cpp)
add_executable(${PROJECT_NAME} ${SOURCES})
target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_20)
target_compile_options(
${PROJECT_NAME}
PRIVATE
-Wall -Wextra -Wpedantic -Wshadow
-Wold-style-cast -Wcast-align -Wno-unused
-Wconversion -Wcast-qual -Wctor-dtor-privacy
-Wdisabled-optimization -Wformat=2 -Winit-self
-Wlogical-op -Wmissing-declarations
-Wmissing-include-dirs -Wnoexcept -Woverloaded-virtual
-Wredundant-decls -Wsign-conversion -Wsign-promo
-Wstrict-null-sentinel -Wstrict-overflow=5 -Wswitch-default
-Wundef -Werror
-pedantic -fsanitize=address
)
target_include_directories(${PROJECT_NAME} PRIVATE src)
target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=address)
|