blob: 0c74bf2f8a1d134518320735abccfb98d627fd01 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
project(tests CXX)
enable_testing()
file(GLOB SOURCES
cell_helper_test.cpp
${CMAKE_SOURCE_DIR}/src/game/cell_helper.cpp
${CMAKE_SOURCE_DIR}/src/engine/data/vector2.cpp
${CMAKE_SOURCE_DIR}/src/engine/data/bounds.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
-Wmissing-declarations -Wmissing-include-dirs
-Woverloaded-virtual -Wredundant-decls
-Wsign-conversion -Wsign-promo
-Wstrict-overflow=5 -Wswitch-default
-Wundef -Werror
-pedantic -fsanitize=address -fno-exceptions
)
target_include_directories(
${PROJECT_NAME}
PRIVATE
"${CMAKE_SOURCE_DIR}/src"
)
target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=address)
target_link_libraries(
${PROJECT_NAME}
GSL
yacppdic
gtest_main
gmock
)
include(GoogleTest)
gtest_discover_tests(${PROJECT_NAME})
|