blob: d702d45193c38def355a58a485beeab7a91223a3 [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
31set( major_version "0" ) # should be automatically populated from git tag later, but until CI process sets a tag we use this
32set( minor_version "1" )
33set( patch_level "0" )
34
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
152# this gets us round a chicken/egg problem. include files don't exist until make is run
153# but Cmake insists on having these exist when we add them to include directories to
154# enable code to find them after we build them.
155#
156include_directories( "${CMAKE_CURRENT_SOURCE_DIR}/src/messaging" )
157
158
159# Compiler flags
160#
161set( CMAKE_POSITION_INDEPENDENT_CODE ON )
162set( CMAKE_C_FLAGS "-g " )
163set( CMAKE_CPP_FLAGS "-g " )
164if( GPROF ) # if set, we'll set profiling flag on compiles
165 message( "+++ profiling is on" )
166 set( CMAKE_C_FLAGS "-pg " )
167 set( CMAKE_CPP_FLAGS "-pg " )
168else()
169 message( "+++ profiling is off" )
170endif()
171unset( GPROF CACHE ) # we don't want this to persist
172
173# Include modules
174add_subdirectory( src/messaging )
175add_subdirectory( src/xapp )
176#add_subdirectory( doc ) # this will auto skip if {X}fm is not available
177
178
179# shared and static libraries are built from the same object files.
180#
181add_library( ricxfcpp_shared SHARED "$<TARGET_OBJECTS:message_objects>;$<TARGET_OBJECTS:xapp_objects>" )
182set_target_properties( ricxfcpp_shared
183 PROPERTIES
184 OUTPUT_NAME "ricxfcpp"
185 SOVERSION ${major_version}
186 VERSION ${major_version}.${minor_version}.${patch_level}
187)
188target_include_directories( ricxfcpp_shared PUBLIC "src/messenger" "src/xapp" )
189
190# we only build/export the static archive (.a) if generating a dev package
191if( DEV_PKG )
192 add_library( ricxfcpp_static STATIC "$<TARGET_OBJECTS:message_objects>;$<TARGET_OBJECTS:xapp_objects>" )
193 set_target_properties( ricxfcpp_static
194 PROPERTIES
195 OUTPUT_NAME "ricxfcpp"
196 SOVERSION ${major_version}
197 VERSION ${major_version}.${minor_version}.${patch_level}
198 )
199 target_include_directories( ricxfcpp_static PUBLIC "src/messenger" "src/xapp" )
200endif()
201
202# ------------- packaging -----------------------------------------------------
203
204# Define what should be installed, and where they should go. For dev package we install
205# only the RMr headers, man pages and archive (.a) files. The run-time package gets just
206# the library (.so) files and nothing more.
207#
208if( DEV_PKG )
209 set( target_list "ricxfcpp_static" )
210else()
211 set( target_list "ricxfcpp_shared" )
212endif()
213
214install( TARGETS ${target_list} EXPORT LibraryConfig
215 LIBRARY DESTINATION ${install_lib}
216 ARCHIVE DESTINATION ${install_lib}
217 PUBLIC_HEADER DESTINATION ${install_inc}
218)
219
220unset( DEV_PKG CACHE ) # prevent from being a hidden setting if user redoes things
221
222IF( EXISTS "${CMAKE_ROOT}/Modules/CPack.cmake" )
223 include( InstallRequiredSystemLibraries )
224
225 set( CPACK_DEBIAN_PACKAGE_NAME ${deb_pkg_name} )
226 set( CPACK_RPM_PACKAGE_NAME ${rpm_pkg_name} )
227
228 set( CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION "/usr/local;/usr/local/bin;/usr/local/include;/usr/local/share;/usr/local/lib" )
229
230 set( CPACK_set_DESTDIR "on" )
231 set( CPACK_PACKAGING_INSTALL_PREFIX "${install_root}" )
232 set( CPACK_GENERATOR "${pkg_list}" )
233
234 set( CPACK_PACKAGE_DESCRIPTION "C++ framework for RIC xAPPs based on RMR." )
235 set( CPACK_PACKAGE_DESCRIPTION_SUMMARY "RIC xAPP C++ framework library" )
236 set( CPACK_PACKAGE_VENDOR "None" )
237 set( CPACK_PACKAGE_CONTACT "None" )
238 set( CPACK_PACKAGE_VERSION_MAJOR "${major_version}" )
239 set( CPACK_PACKAGE_VERSION_MINOR "${minor_version}" )
240 set( CPACK_PACKAGE_VERSION_PATCH "${patch_level}" )
241 set( CPACK_PACKAGE "${pkg_label}" ) # generic name for old versions of cpack
242 set( CPACK_DEBIAN_FILE_NAME "${deb_pkg_label}.deb" )
243 set( CPACK_RPM_FILE_NAME "${rpm_pkg_label}.rpm" )
244
245 # Future: define dependencies on RMR and other libs
246
247 set( CPACK_DEBIAN_PACKAGE_PRIORITY "optional" )
248 set( CPACK_DEBIAN_PACKAGE_SECTION "ric" )
249 set( CPACK_DEBIAN_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR} )
250 set( CPACK_RPM_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR} )
251
252 # this seems ingnored if included
253 #set( CPACK_COMPONENTS_ALL Libraries ApplicationData )
254
255 INCLUDE( CPack )
256ENDIF()