blob: b79eb2e6b671bee9e3b71ba3c34c602c69e3459a [file] [log] [blame]
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -04001#==================================================================================
2# Copyright (c) 2019 Nokia
3# Copyright (c) 2018-2019 AT&T Intellectual Property.
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
19# This CMake definition supports several -D command line options:
20#
21# -DDEBUG=n Enable debugging level n
22# -DDEV_PKG=1 Development package configuration
23# -DBUILD_DOC=1 Man pages generated
24# -DPRESERVE_PTYPE=1 Do not change the processor type when naming deb packages
25# -DGPROF=1 Enable profiling compile time flags
26# -DMAN_PREFIX=<path> Supply a path where man pages are installed (default: /usr/share/man)
27
28project( ricxfcpp )
29cmake_minimum_required( VERSION 3.5 )
30
E. Scott Daniels6ef23e12020-07-15 08:03:22 -040031set( major_version "2" ) # should be automatically populated from git tag later, but until CI process sets a tag we use this
E. Scott Danielsc85ac8b2020-08-19 09:51:33 -040032set( minor_version "3" )
Alexandre Hufff8993262022-02-05 09:54:32 -030033set( patch_level "6" )
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -040034
35set( install_root "${CMAKE_INSTALL_PREFIX}" )
36set( install_inc "include/ricxfcpp" )
37if( MAN_PREFIX )
38 set( install_man ${MAN_PREFIX} ) # is there a cmake var for this -- can't find one
39else()
40 set( install_man "/usr/share/man" ) # this needs to be fixed so it's not hard coded
41endif()
42
43# Must use GNUInstallDirs to install libraries into correct
44# locations on all platforms.
45include( GNUInstallDirs )
46
47# externals may install using LIBDIR as established by the gnu include; it varies from system
48# to system, and we don't trust that it is always set, so we default to lib if it is missing.
49#
50if( NOT CMAKE_INSTALL_LIBDIR )
51 set( CMAKE_INSTALL_LIBDIR "lib" )
52endif()
53
54set( install_lib "${CMAKE_INSTALL_LIBDIR}" )
55message( "+++ ricxfcpp library install target directory: ${install_lib}" )
56
57# ---------------- extract some things from git ------------------------------
58
59# commit id for the version string
60execute_process(
61 COMMAND bash -c "git rev-parse --short HEAD|awk '{printf\"%s\", $0}'"
62 OUTPUT_VARIABLE git_id
63)
64
65# version information for library names and version string
66execute_process(
67 COMMAND bash -c "git describe --tags --abbrev=0 HEAD 2>/dev/null | awk -v tag=0.0.4095 ' { tag=$1 } END{ print tag suffix }'|sed 's/\\./;/g' "
68 OUTPUT_VARIABLE mmp_version_str
69 ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE
70)
71message( "+++ mmp version from tag: '${mmp_version_str}'" )
72
73# extra indicator to show that the build was based on modified file(s) and not the true commit
74# (no hope of reproducing the exact library for debugging). Used only for the internal version
75# string.
76execute_process(
77 COMMAND bash -c "git diff --shortstat|awk -v fmt=%s -v r=-rotten '{ s=r } END { printf( fmt, s ) }'"
78 OUTPUT_VARIABLE spoiled_str
79)
80
81# uncomment these lines once CI starts adding a tag on merge
82#set( mmp_version ${mmp_version_str} )
83#list( GET mmp_version 0 major_version )
84#list( GET mmp_version 1 minor_version )
85#list( GET mmp_version 2 patch_level )
86
87if( DEBUG ) # if set, we'll set debugging on in the compile
88 set( debugging ${DEBUG} )
89 message( "+++ debugging is being set to ${DEBUG}" )
90else()
91 set( debugging 0 )
92 message( "+++ debugging is set to off" )
93endif()
94unset( DEBUG CACHE ) # we don't want this to persist
95
96
97# define constants used in the version string, debugging, etc.
98add_definitions(
99 -DGIT_ID=${git_id}
100 -DMAJOR_VER=${major_version}
101 -DMINOR_VER=${minor_version}
102 -DPATCH_VER=${patch_level}
103 -DDEBUG=${debugging}
104)
105
106# ---------------- suss out pkg gen tools so we don't fail generating packages that the system cannot support --------------
107
108# deb packages use underbars, and package manager(s) seem to flip the *_64 processor type
109# to the old (non-standard) amd64 string, so we do it here for consistency. Set -DPRESERVE_PTYPE=1
110# to prevent the flip. RPM packages will always be given the system generated processor type string.
111#
112if( ${CMAKE_SYSTEM_PROCESSOR} MATCHES "x86_64" )
113 if( NOT PRESERVE_PTYPE )
114 set( deb_sys_name "amd64" )
115 else()
116 set( deb_sys_name ${CMAKE_SYSTEM_PROCESSOR} )
117 endif()
118else()
119 set( deb_sys_name ${CMAKE_SYSTEM_PROCESSOR} )
120endif()
121unset( PRESERVE_PTYPE CACHE ) # we don't want this to persist
122
123set( rpm_sys_name ${CMAKE_SYSTEM_PROCESSOR} )
124
125if( DEV_PKG )
126 set( deb_pkg_name "ricxfcpp-dev" )
127 set( rpm_pkg_name "ricxfcpp-devel" )
128else()
129 set( deb_pkg_name "ricxfcpp" )
130 set( rpm_pkg_name "ricxfcpp" )
131endif()
132
133set( pkg_label "ricxfcpp${spoiled_str}-${major_version}.${minor_version}.${patch_level}-${sys_name}" )
134set( rpm_pkg_label "${rpm_pkg_name}${spoiled_str}-${major_version}.${minor_version}.${patch_level}-${rpm_sys_name}" )
135set( deb_pkg_label "${deb_pkg_name}${spoiled_str}_${major_version}.${minor_version}.${patch_level}_${deb_sys_name}" )
136message( "+++ pkg name: ${deb_pkg_label}.deb" )
137
138set( gen_rpm 0 )
139find_program( rpm NAMES rpmbuild ) # rpm package gen requires this to be installed
140if( "${rpm}" MATCHES "rpm-NOTFOUND" ) # cannot build rpm
141 set( pkg_list "DEB" )
142 message( "### make package will generate only deb package; cannot find support to generate rpm packages" )
143else()
144 message( "+++ pkg name: ${rpm_pkg_label}.rpm" ) # debugging if we think we can gen rpm too
145 set( pkg_list "DEB;RPM" )
146 set( gen_rpm 1 )
147 message( "+++ make package will generate both deb and rpm packages" )
148endif()
149
150
151
E. Scott Daniels6ef23e12020-07-15 08:03:22 -0400152# bleeding cmake names are short novels; and when lines cannot be split they're a pain
153set ( srcd "${CMAKE_CURRENT_SOURCE_DIR}" )
154
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400155# this gets us round a chicken/egg problem. include files don't exist until make is run
156# but Cmake insists on having these exist when we add them to include directories to
157# enable code to find them after we build them.
158#
E. Scott Danielsd486a172020-07-29 12:39:54 -0400159include_directories( "${srcd}/src/messaging;${srcd}/src/json;${srcd}/src/alarm;${srcd}/src/metrics;${srcd}/src/config;${srcd}/ext/jsmn" )
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400160
161# Compiler flags
162#
163set( CMAKE_POSITION_INDEPENDENT_CODE ON )
164set( CMAKE_C_FLAGS "-g " )
165set( CMAKE_CPP_FLAGS "-g " )
E. Scott Daniels6ef23e12020-07-15 08:03:22 -0400166set( CMAKE_CXX_FLAGS "-g " )
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400167if( GPROF ) # if set, we'll set profiling flag on compiles
168 message( "+++ profiling is on" )
169 set( CMAKE_C_FLAGS "-pg " )
170 set( CMAKE_CPP_FLAGS "-pg " )
171else()
172 message( "+++ profiling is off" )
173endif()
174unset( GPROF CACHE ) # we don't want this to persist
175
E. Scott Daniels97204c82020-06-29 15:39:57 -0400176
177# --------------------- external building --------------------------------------------------------
178execute_process( COMMAND git submodule update --init -- ext/jsmn
179 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
180 )
181
182
183# --------------------- framework building --------------------------------------------------------
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400184# Include modules
E. Scott Daniels97204c82020-06-29 15:39:57 -0400185add_subdirectory( src/json )
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400186add_subdirectory( src/messaging )
187add_subdirectory( src/xapp )
E. Scott Daniels6ef23e12020-07-15 08:03:22 -0400188add_subdirectory( src/alarm )
E. Scott Danielsef362052020-07-22 15:49:54 -0400189add_subdirectory( src/metrics )
E. Scott Danielsd486a172020-07-29 12:39:54 -0400190add_subdirectory( src/config )
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400191#add_subdirectory( doc ) # this will auto skip if {X}fm is not available
192
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400193# shared and static libraries are built from the same object files.
194#
E. Scott Daniels97204c82020-06-29 15:39:57 -0400195add_library( ricxfcpp_shared SHARED
E. Scott Danielsd486a172020-07-29 12:39:54 -0400196 "$<TARGET_OBJECTS:message_objects>;$<TARGET_OBJECTS:json_objects>;$<TARGET_OBJECTS:alarm_objects>;$<TARGET_OBJECTS:metrics_objects>;$<TARGET_OBJECTS:config_objects>;$<TARGET_OBJECTS:xapp_objects>"
E. Scott Daniels97204c82020-06-29 15:39:57 -0400197)
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400198set_target_properties( ricxfcpp_shared
199 PROPERTIES
200 OUTPUT_NAME "ricxfcpp"
201 SOVERSION ${major_version}
E. Scott Daniels97204c82020-06-29 15:39:57 -0400202 VERSION ${major_version}.${minor_version}.${patch_level}
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400203)
E. Scott Danielsef362052020-07-22 15:49:54 -0400204#target_include_directories( ricxfcpp_shared PUBLIC "src/alarm" "src/metrics" "src/messenger" "src/xapp" )
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400205
206# we only build/export the static archive (.a) if generating a dev package
207if( DEV_PKG )
E. Scott Daniels97204c82020-06-29 15:39:57 -0400208 add_library( ricxfcpp_static STATIC
E. Scott Danielsd486a172020-07-29 12:39:54 -0400209 "$<TARGET_OBJECTS:message_objects>;$<TARGET_OBJECTS:json_objects>;$<TARGET_OBJECTS:alarm_objects>;$<TARGET_OBJECTS:config_objects>;$<TARGET_OBJECTS:metrics_objects>;$<TARGET_OBJECTS:xapp_objects>"
E. Scott Daniels97204c82020-06-29 15:39:57 -0400210 )
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400211 set_target_properties( ricxfcpp_static
212 PROPERTIES
213 OUTPUT_NAME "ricxfcpp"
214 SOVERSION ${major_version}
E. Scott Daniels97204c82020-06-29 15:39:57 -0400215 VERSION ${major_version}.${minor_version}.${patch_level}
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400216 )
E. Scott Danielsef362052020-07-22 15:49:54 -0400217# target_include_directories( ricxfcpp_static PUBLIC "src/alarm" "src/metrics" "src/messenger" "src/xapp" )
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400218endif()
219
E. Scott Daniels4e4fb502020-03-24 12:28:06 -0400220# -------- unit testing -------------------------------------------------------
221enable_testing()
222add_test(
223 NAME drive_unit_tests
E. Scott Danielsef362052020-07-22 15:49:54 -0400224 COMMAND bash ../test/unit_test.sh -q CMBUILD=${CMAKE_CURRENT_BINARY_DIR}
E. Scott Daniels4e4fb502020-03-24 12:28:06 -0400225 WORKING_DIRECTORY ../test
226)
227
228
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400229# ------------- packaging -----------------------------------------------------
230
231# Define what should be installed, and where they should go. For dev package we install
232# only the RMr headers, man pages and archive (.a) files. The run-time package gets just
233# the library (.so) files and nothing more.
234#
235if( DEV_PKG )
236 set( target_list "ricxfcpp_static" )
237else()
238 set( target_list "ricxfcpp_shared" )
239endif()
240
241install( TARGETS ${target_list} EXPORT LibraryConfig
E. Scott Daniels6ef23e12020-07-15 08:03:22 -0400242 LIBRARY DESTINATION ${install_lib}
243 ARCHIVE DESTINATION ${install_lib}
244 PUBLIC_HEADER DESTINATION ${install_inc}
E. Scott Daniels8cb3c6f2020-03-19 11:36:37 -0400245)
246
247unset( DEV_PKG CACHE ) # prevent from being a hidden setting if user redoes things
248
249IF( EXISTS "${CMAKE_ROOT}/Modules/CPack.cmake" )
250 include( InstallRequiredSystemLibraries )
251
252 set( CPACK_DEBIAN_PACKAGE_NAME ${deb_pkg_name} )
253 set( CPACK_RPM_PACKAGE_NAME ${rpm_pkg_name} )
254
255 set( CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION "/usr/local;/usr/local/bin;/usr/local/include;/usr/local/share;/usr/local/lib" )
256
257 set( CPACK_set_DESTDIR "on" )
258 set( CPACK_PACKAGING_INSTALL_PREFIX "${install_root}" )
259 set( CPACK_GENERATOR "${pkg_list}" )
260
261 set( CPACK_PACKAGE_DESCRIPTION "C++ framework for RIC xAPPs based on RMR." )
262 set( CPACK_PACKAGE_DESCRIPTION_SUMMARY "RIC xAPP C++ framework library" )
263 set( CPACK_PACKAGE_VENDOR "None" )
264 set( CPACK_PACKAGE_CONTACT "None" )
265 set( CPACK_PACKAGE_VERSION_MAJOR "${major_version}" )
266 set( CPACK_PACKAGE_VERSION_MINOR "${minor_version}" )
267 set( CPACK_PACKAGE_VERSION_PATCH "${patch_level}" )
268 set( CPACK_PACKAGE "${pkg_label}" ) # generic name for old versions of cpack
269 set( CPACK_DEBIAN_FILE_NAME "${deb_pkg_label}.deb" )
270 set( CPACK_RPM_FILE_NAME "${rpm_pkg_label}.rpm" )
271
272 # Future: define dependencies on RMR and other libs
273
274 set( CPACK_DEBIAN_PACKAGE_PRIORITY "optional" )
275 set( CPACK_DEBIAN_PACKAGE_SECTION "ric" )
276 set( CPACK_DEBIAN_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR} )
277 set( CPACK_RPM_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR} )
278
279 # this seems ingnored if included
280 #set( CPACK_COMPONENTS_ALL Libraries ApplicationData )
281
282 INCLUDE( CPack )
283ENDIF()