-
Notifications
You must be signed in to change notification settings - Fork 26
/
CMakeLists.txt
72 lines (62 loc) · 2.03 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
68
69
70
71
72
# SPDX-FileCopyrightText: 2013-2021 Tobias Lorenz <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-or-later
cmake_minimum_required(VERSION 3.9)
project(Vector_BLF
VERSION 2.4.2
DESCRIPTION "Vector Binary Log File support library")
# source code documentation
option(OPTION_RUN_DOXYGEN "Run Doxygen" ON)
# static code analysis
option(OPTION_RUN_CCCC "Run CCCC" OFF)
option(OPTION_RUN_CPPCHECK "Run Cppcheck" OFF)
# dynamic tests
option(OPTION_BUILD_EXAMPLES "Build examples" OFF)
option(OPTION_BUILD_TESTS "Build tests" OFF)
option(OPTION_USE_GCOV "Build with gcov to generate coverage data on execution" OFF)
option(OPTION_USE_GPROF "Build with gprof" OFF)
option(OPTION_ADD_LCOV "Add lcov targets to generate HTML coverage report" OFF)
# directories
include(GNUInstallDirs)
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules")
# dependencies
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
find_package(ZLIB REQUIRED)
if(OPTION_RUN_DOXYGEN)
find_package(Doxygen REQUIRED)
find_package(Graphviz)
if(WIN32)
find_package(HTMLHelp REQUIRED)
endif()
endif()
if(OPTION_RUN_CCCC)
find_package(CCCC REQUIRED)
endif()
if(OPTION_RUN_CPPCHECK)
find_package(Cppcheck REQUIRED)
endif()
if(OPTION_BUILD_TESTS)
enable_testing()
find_package(Boost 1.55 COMPONENTS system filesystem unit_test_framework REQUIRED)
endif()
if(OPTION_ADD_LCOV)
find_package(LCOV REQUIRED)
endif()
# package
set(CPACK_PACKAGE_VERSION_MAJOR ${PROJECT_VERSION_MAJOR})
set(CPACK_PACKAGE_VERSION_MINOR ${PROJECT_VERSION_MINOR})
set(CPACK_PACKAGE_VERSION_PATCH ${PROJECT_VERSION_PATCH})
set(CPACK_PACKAGE_CONTACT "Tobias Lorenz <[email protected]>")
set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/LICENSES/GPL-3.0-or-later.txt)
set(CPACK_RESOURCE_FILE_README ${CMAKE_CURRENT_SOURCE_DIR}/README.md)
include(CPack)
# install
install(
FILES
CHANGELOG.md
README.md
LICENSES/GPL-3.0-or-later.txt
DESTINATION ${CMAKE_INSTALL_DOCDIR})
# sub directories
add_subdirectory(src)