aboutsummaryrefslogtreecommitdiff
path: root/test/CMakeLists.txt
blob: 8a927235ede36611c381c5dd7b388261c37c5e6e (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
project(tests CXX)

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
	-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
)

target_include_directories(
	${PROJECT_NAME}
	PRIVATE
	"${CMAKE_SOURCE_DIR}/src"
)

target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=address)

target_link_libraries(
	${PROJECT_NAME}
	PRIVATE
	GSL
	yacppdic
	Catch2::Catch2WithMain
	trompeloeil
)