-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
67 lines (66 loc) · 1.75 KB
/
CMakeLists.txt
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
cmake_minimum_required(VERSION 3.14)
# Project information
project(Statistics
VERSION 4.0.4
DESCRIPTION "Statistics algorithms and classes."
LANGUAGES CXX
)
include(FetchContent)
# Fetch circular buffer
FetchContent_Declare(
circle_buf
GIT_REPOSITORY https://github.com/bolderflight/circle_buf.git
GIT_TAG v4.0.2
)
FetchContent_MakeAvailable(circle_buf)
# Add the library target
add_library(statistics INTERFACE)
# Link circular buffer
target_link_libraries(statistics
INTERFACE
circle_buf
)
# Setup include directories
target_include_directories(statistics INTERFACE src/)
# Example and unit testing if this project is built separately
if (PROJECT_NAME STREQUAL CMAKE_PROJECT_NAME)
# Add the example target
add_executable(stats_example examples/cmake/stats_example.cc)
# Add the includes
target_include_directories(stats_example PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
# Link libraries to the example target
target_link_libraries(stats_example
PRIVATE
statistics
)
# Fetch google test
include(FetchContent)
FetchContent_Declare(
googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG release-1.12.1
)
FetchContent_MakeAvailable(googletest)
enable_testing()
include(GoogleTest)
# Add the test target
add_executable(stats_test tests/stats_test.cc)
# Add the includes
target_include_directories(stats_test PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
# Link libraries to the test target
target_link_libraries(stats_test
PRIVATE
statistics
gtest_main
gtest
gmock
)
# Discover unit tests
gtest_discover_tests(stats_test)
endif()