diff options
author | HampusM <hampus@hampusmat.com> | 2022-04-26 20:16:22 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-04-26 20:19:23 +0200 |
commit | d2a87d5803c7aaa9a47791a5a0f1494c19671ebc (patch) | |
tree | 5dcc645cafe5c1986b66b0af0c9a62663c261ecb /test/CMakeLists.txt | |
parent | dbe0e42817964b700385ac6ed7b7dc2141669e17 (diff) |
add project & make some tweaks
Added from https://git.hampusmat.com/game-of-life
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r-- | test/CMakeLists.txt | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt new file mode 100644 index 0000000..c1fb283 --- /dev/null +++ b/test/CMakeLists.txt @@ -0,0 +1,47 @@ +cmake_minimum_required(VERSION 3.2.0) + +set(CMAKE_EXPORT_COMPILE_COMMANDS 1) +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_EXTENSIONS OFF) + +project(test CXX) + +add_subdirectory(lib) + +enable_testing() + +add_executable( + ${PROJECT_NAME} + container.test.cpp +) + +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_link_options(${PROJECT_NAME} PRIVATE -fsanitize=address) + +target_link_libraries( + ${PROJECT_NAME} + PRIVATE + yacppdic + gtest_main +) + +include(GoogleTest) + +gtest_discover_tests(${PROJECT_NAME}) + |