summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: f8ec7beaae09664cd9a24b1586c52eb4983a844e (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
cmake_minimum_required(VERSION 3.5)
set(CMAKE_CXX_COMPILER "g++")
project(ram)

set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

add_compile_options(-Wall -lstdc++ -g -O0)
add_compile_options(-Wextra -Wpedantic)

# cpp standard
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

# header files
include_directories(
	${PROJECT_SOURCE_DIR}/inc
)

# gather source files
file(GLOB_RECURSE SRCS "src/*.cc")

# binary executable
add_library(${PROJECT_NAME}_lib ${SRCS})
target_link_libraries(${PROJECT_NAME}_lib)

find_package(Catch2 REQUIRED)

#gather test files
file(GLOB_RECURSE TESTS "tests/*.cc")

# test executable
add_executable(tests ${SRCS} ${TESTS})
target_link_libraries(tests PRIVATE Catch2::Catch2WithMain PRIVATE)

# test discovery
include(CTest)
include(Catch)
catch_discover_tests(tests)