6a8d101200786c53f249cb4516477706d9a90828
[ric-plt/tracelibcpp.git] / CMakeLists.txt
1 #
2 # Copyright (c) 2019 AT&T Intellectual Property.
3 # Copyright (c) 2018-2019 Nokia.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17
18 cmake_minimum_required (VERSION 3.5)
19
20 file(
21   DOWNLOAD https://raw.githubusercontent.com/hunter-packages/gate/master/cmake/HunterGate.cmake
22   ${CMAKE_BINARY_DIR}/HunterGate.cmake)
23
24 include("${CMAKE_BINARY_DIR}/HunterGate.cmake")
25
26 HunterGate(
27     URL "https://github.com/ruslo/hunter/archive/v0.23.5.tar.gz"
28     SHA1 "2c5c6fc1cf609d0856695d60f147594daf4e6b3e"
29 )
30
31 project(tracelibcpp LANGUAGES CXX C)
32 set(CMAKE_TOOLCHAIN_FILE ${CMAKE_SOURCE_DIR}/cmake/cxx1.cmake)
33 add_compile_options(-Wall -Wextra -Werror)
34 set(CMAKE_CXX_STANDARD 11)
35
36 if(NOT CMAKE_BUILD_TYPE)
37   set(CMAKE_BUILD_TYPE Release)
38 endif()
39
40 set(CMAKE_CXX_FLAGS_DEBUG "-g -O0")
41 set(CMAKE_CXX_FLAGS_RELEASE "-O2")
42
43 set (tracelibcpp_VERSION_MAJOR "0")
44 set (tracelibcpp_VERSION_MINOR "0")
45 set (tracelibcpp_VERSION_MICRO "3")
46 set (tracelibcpp_VERSION_STRING
47     "${tracelibcpp_VERSION_MAJOR}.${tracelibcpp_VERSION_MINOR}.${tracelibcpp_VERSION_MICRO}")
48
49 # Set up cpack
50 # Common
51 set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "C++ implementation RIC tracing initialization")
52 set(CPACK_PACKAGE_VENDOR "Nokia")
53 set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README.md")
54 set(CPACK_PACKAGE_VERSION_MAJOR ${tracelibcpp_VERSION_MAJOR})
55 set(CPACK_PACKAGE_VERSION_MINOR ${tracelibcpp_VERSION_MINOR})
56 set(CPACK_PACKAGE_VERSION_PATCH ${tracelibcpp_VERSION_MICRO})
57 set(CPACK_COMPONENTS_ALL DIST DEVEL)
58 set(CPACK_COMPONENTS_GROUPING ONE_PER_GROUP )
59 set(CPACK_GENERATOR "RPM;DEB")
60 set(CPACK_COMPONENTS_IGNORE_GROUPS 1)
61 set(CPACK_PACKAGE_CONTACT None)
62
63 # RPM
64 set(CPACK_RPM_COMPONENT_INSTALL ON)
65 set(CPACK_RPM_PACKAGE_GROUP "Development/Libraries")
66 set(CPACK_RPM_FILE_NAME RPM-DEFAULT)
67 set(CPACK_RPM_PACKAGE_AUTOREQ 1)
68
69 # Debian
70 set(CPACK_DEB_COMPONENT_INSTALL ON)
71 set(CPACK_DEB_PACKAGE_COMPONENT ON)
72 set(CPACK_DEBIAN_FILE_NAME DEB-DEFAULT)
73 set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON)
74
75 include(CPack)
76
77 # Add jaeger
78 hunter_add_package(jaegertracing)
79 find_package(jaegertracing CONFIG REQUIRED)
80
81 # Unit testing support of off by default
82 # Enable it with cmake -DWITH_TESTING=ON <srcdir>
83 option(WITH_TESTING "Include using testing support" OFF)
84
85 include_directories ("${PROJECT_SOURCE_DIR}/include/tracelibcpp")
86
87 add_library(tracelibcpp SHARED
88     src/tracelib.cpp
89 )
90
91 # Library versions are on by default
92 # i.e. so versions
93 option(WITH_VERSION "Support for library versioning" ON)
94
95 if (WITH_VERSION)
96     set_target_properties(tracelibcpp PROPERTIES VERSION ${tracelibcpp_VERSION_STRING}
97                                   SOVERSION ${tracelibcpp_VERSION_MAJOR})
98 endif (WITH_VERSION)
99
100 if (WITH_VERSION)
101 set_target_properties(tracelibcpp PROPERTIES VERSION ${tracelibcpp_VERSION_STRING}
102                                   SOVERSION ${tracelibcpp_VERSION_MAJOR})
103 endif (WITH_VERSION)
104
105 target_link_libraries(tracelibcpp PUBLIC jaegertracing::jaegertracing-static)
106
107 include(GNUInstallDirs)
108 if (NOT DEFINED LIB_INSTALL_DIR)
109     set(LIB_INSTALL_DIR lib)
110 endif()
111
112 install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/tracelibcpp
113         DESTINATION include
114         COMPONENT DEVEL)
115
116 install(TARGETS tracelibcpp
117         COMPONENT DIST
118         LIBRARY DESTINATION ${LIB_INSTALL_DIR}
119         NAMELINK_SKIP
120         )
121
122 install(TARGETS tracelibcpp
123         COMPONENT DEVEL
124         LIBRARY DESTINATION ${LIB_INSTALL_DIR}
125         NAMELINK_ONLY
126         )
127
128 # Add google test
129 if (WITH_TESTING)
130   file(
131     DOWNLOAD https://raw.githubusercontent.com/bilke/cmake-modules/72d804cfbcf82a1e171200c9c02748fa4b7ea033/CodeCoverage.cmake
132     ${CMAKE_BINARY_DIR}/CodeCoverage.cmake)
133
134   include("${CMAKE_BINARY_DIR}/CodeCoverage.cmake")
135   APPEND_COVERAGE_COMPILER_FLAGS()
136   hunter_add_package(GTest)
137   find_package(GTest CONFIG REQUIRED)
138   add_executable(testrunner
139       tst/testcreate.cpp
140   )
141   target_link_libraries(testrunner GTest::main) # GTest::gtest will be linked automatically
142   target_link_libraries(testrunner GTest::gtest)
143   target_link_libraries(testrunner tracelibcpp)
144   add_test(UnitTest testrunner)
145   add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} DEPENDS testrunner)
146   ENABLE_TESTING()
147 endif (WITH_TESTING)