blob: c1198c29a85ec78b27d13f75ee799f11bbd7358a [file] [log] [blame]
Roni Riskaf165e572019-08-14 10:53:40 +03001#
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
18cmake_minimum_required (VERSION 3.5)
19
20file(
21 DOWNLOAD https://raw.githubusercontent.com/hunter-packages/gate/master/cmake/HunterGate.cmake
22 ${CMAKE_BINARY_DIR}/HunterGate.cmake)
23
24include("${CMAKE_BINARY_DIR}/HunterGate.cmake")
25
26HunterGate(
27 URL "https://github.com/ruslo/hunter/archive/v0.23.5.tar.gz"
28 SHA1 "2c5c6fc1cf609d0856695d60f147594daf4e6b3e"
29)
30
31project(tracelibcpp LANGUAGES CXX C)
32set(CMAKE_TOOLCHAIN_FILE ${CMAKE_SOURCE_DIR}/cmake/cxx1.cmake)
Roni Riska95f44a52019-08-19 13:56:21 +030033add_compile_options(-Wall -Wextra -Werror)
34set(CMAKE_CXX_STANDARD 11)
35
36if(NOT CMAKE_BUILD_TYPE)
37 set(CMAKE_BUILD_TYPE Release)
38endif()
39
40set(CMAKE_CXX_FLAGS_DEBUG "-g -O0")
41set(CMAKE_CXX_FLAGS_RELEASE "-O2")
Roni Riskaf165e572019-08-14 10:53:40 +030042
43set (tracelibcpp_VERSION_MAJOR "0")
44set (tracelibcpp_VERSION_MINOR "0")
Roni Riska2ab92e92019-09-09 16:13:25 +030045set (tracelibcpp_VERSION_MICRO "5")
Roni Riskaf165e572019-08-14 10:53:40 +030046set (tracelibcpp_VERSION_STRING
47 "${tracelibcpp_VERSION_MAJOR}.${tracelibcpp_VERSION_MINOR}.${tracelibcpp_VERSION_MICRO}")
48
Roni Riska90757242019-08-15 10:21:49 +030049# Set up cpack
50# Common
51set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "C++ implementation RIC tracing initialization")
52set(CPACK_PACKAGE_VENDOR "Nokia")
53set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README.md")
54set(CPACK_PACKAGE_VERSION_MAJOR ${tracelibcpp_VERSION_MAJOR})
55set(CPACK_PACKAGE_VERSION_MINOR ${tracelibcpp_VERSION_MINOR})
56set(CPACK_PACKAGE_VERSION_PATCH ${tracelibcpp_VERSION_MICRO})
57set(CPACK_COMPONENTS_ALL DIST DEVEL)
58set(CPACK_COMPONENTS_GROUPING ONE_PER_GROUP )
59set(CPACK_GENERATOR "RPM;DEB")
60set(CPACK_COMPONENTS_IGNORE_GROUPS 1)
61set(CPACK_PACKAGE_CONTACT None)
62
63# RPM
64set(CPACK_RPM_COMPONENT_INSTALL ON)
65set(CPACK_RPM_PACKAGE_GROUP "Development/Libraries")
66set(CPACK_RPM_FILE_NAME RPM-DEFAULT)
67set(CPACK_RPM_PACKAGE_AUTOREQ 1)
68
69# Debian
70set(CPACK_DEB_COMPONENT_INSTALL ON)
71set(CPACK_DEB_PACKAGE_COMPONENT ON)
72set(CPACK_DEBIAN_FILE_NAME DEB-DEFAULT)
73set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON)
74
75include(CPack)
76
Roni Riskaf165e572019-08-14 10:53:40 +030077# Add jaeger
78hunter_add_package(jaegertracing)
79find_package(jaegertracing CONFIG REQUIRED)
80
81# Unit testing support of off by default
82# Enable it with cmake -DWITH_TESTING=ON <srcdir>
83option(WITH_TESTING "Include using testing support" OFF)
84
85include_directories ("${PROJECT_SOURCE_DIR}/include/tracelibcpp")
Roni Riska21cdadb2019-09-03 11:58:07 +030086include_directories ("${PROJECT_SOURCE_DIR}/src")
Roni Riskaf165e572019-08-14 10:53:40 +030087
88add_library(tracelibcpp SHARED
89 src/tracelib.cpp
90)
91
Roni Riska95f44a52019-08-19 13:56:21 +030092# Library versions are on by default
93# i.e. so versions
Roni Riskaf165e572019-08-14 10:53:40 +030094option(WITH_VERSION "Support for library versioning" ON)
95
96if (WITH_VERSION)
97 set_target_properties(tracelibcpp PROPERTIES VERSION ${tracelibcpp_VERSION_STRING}
98 SOVERSION ${tracelibcpp_VERSION_MAJOR})
99endif (WITH_VERSION)
100
Roni Riskaf165e572019-08-14 10:53:40 +0300101if (WITH_VERSION)
102set_target_properties(tracelibcpp PROPERTIES VERSION ${tracelibcpp_VERSION_STRING}
103 SOVERSION ${tracelibcpp_VERSION_MAJOR})
104endif (WITH_VERSION)
105
106target_link_libraries(tracelibcpp PUBLIC jaegertracing::jaegertracing-static)
107
108include(GNUInstallDirs)
109if (NOT DEFINED LIB_INSTALL_DIR)
110 set(LIB_INSTALL_DIR lib)
111endif()
112
113install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/tracelibcpp
114 DESTINATION include
115 COMPONENT DEVEL)
116
117install(TARGETS tracelibcpp
118 COMPONENT DIST
119 LIBRARY DESTINATION ${LIB_INSTALL_DIR}
120 NAMELINK_SKIP
121 )
122
123install(TARGETS tracelibcpp
124 COMPONENT DEVEL
125 LIBRARY DESTINATION ${LIB_INSTALL_DIR}
126 NAMELINK_ONLY
127 )
128
129# Add google test
130if (WITH_TESTING)
Roni Riska95f44a52019-08-19 13:56:21 +0300131 file(
132 DOWNLOAD https://raw.githubusercontent.com/bilke/cmake-modules/72d804cfbcf82a1e171200c9c02748fa4b7ea033/CodeCoverage.cmake
133 ${CMAKE_BINARY_DIR}/CodeCoverage.cmake)
134
135 include("${CMAKE_BINARY_DIR}/CodeCoverage.cmake")
136 APPEND_COVERAGE_COMPILER_FLAGS()
Roni Riskaf165e572019-08-14 10:53:40 +0300137 hunter_add_package(GTest)
138 find_package(GTest CONFIG REQUIRED)
139 add_executable(testrunner
140 tst/testcreate.cpp
141 )
142 target_link_libraries(testrunner GTest::main) # GTest::gtest will be linked automatically
143 target_link_libraries(testrunner GTest::gtest)
144 target_link_libraries(testrunner tracelibcpp)
145 add_test(UnitTest testrunner)
146 add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} DEPENDS testrunner)
147 ENABLE_TESTING()
148endif (WITH_TESTING)