01f8da0180af5fa9826a4d5bce07d5f52dc01dc0
[ric-plt/xapp-frame-cpp.git] / CMakeLists.txt
1 #==================================================================================
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
28 project( ricxfcpp )
29 cmake_minimum_required( VERSION 3.5 )
30
31 set( major_version "2" )                # should be automatically populated from git tag later, but until CI process sets a tag we use this
32 set( minor_version "3" )
33 set( patch_level "7" )
34
35 set( install_root "${CMAKE_INSTALL_PREFIX}" )
36 set( install_inc "include/ricxfcpp" )
37 if( MAN_PREFIX )
38         set( install_man ${MAN_PREFIX} )                        # is there a cmake var for this -- can't find one
39 else()
40         set( install_man "/usr/share/man" )                     # this needs to be fixed so it's not hard coded
41 endif()
42
43 # Must use GNUInstallDirs to install libraries into correct
44 # locations on all platforms.
45 include( 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 #
50 if( NOT CMAKE_INSTALL_LIBDIR )
51         set( CMAKE_INSTALL_LIBDIR "lib" )
52 endif()
53
54 set( install_lib "${CMAKE_INSTALL_LIBDIR}" )
55 message( "+++ ricxfcpp library install target directory: ${install_lib}" )
56
57 # ---------------- extract some things from git ------------------------------
58
59 # commit id for the version string
60 execute_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
66 execute_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 )
71 message( "+++ 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.
76 execute_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
87 if( DEBUG )                                     # if set, we'll set debugging on in the compile
88         set( debugging ${DEBUG} )
89         message( "+++ debugging is being set to ${DEBUG}" )
90 else()
91         set( debugging 0 )
92         message( "+++ debugging is set to off" )
93 endif()
94 unset( DEBUG CACHE )                                    # we don't want this to persist
95
96
97 # define constants used in the version string, debugging, etc.
98 add_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 #
112 if( ${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()
118 else()
119         set( deb_sys_name ${CMAKE_SYSTEM_PROCESSOR} )
120 endif()
121 unset( PRESERVE_PTYPE CACHE )                                   # we don't want this to persist
122
123 set( rpm_sys_name ${CMAKE_SYSTEM_PROCESSOR} )
124
125 if( DEV_PKG )
126         set( deb_pkg_name "ricxfcpp-dev" )
127         set( rpm_pkg_name "ricxfcpp-devel" )
128 else()
129         set( deb_pkg_name "ricxfcpp" )
130         set( rpm_pkg_name "ricxfcpp" )
131 endif()
132
133 set( pkg_label "ricxfcpp${spoiled_str}-${major_version}.${minor_version}.${patch_level}-${sys_name}" )
134 set( rpm_pkg_label "${rpm_pkg_name}${spoiled_str}-${major_version}.${minor_version}.${patch_level}-${rpm_sys_name}" )
135 set( deb_pkg_label "${deb_pkg_name}${spoiled_str}_${major_version}.${minor_version}.${patch_level}_${deb_sys_name}" )
136 message( "+++ pkg name: ${deb_pkg_label}.deb" )
137
138 set( gen_rpm 0 )
139 find_program( rpm NAMES rpmbuild )                                      # rpm package gen requires this to be installed
140 if( "${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" )
143 else()
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" )
148 endif()
149
150
151
152 # bleeding cmake names are short novels; and when lines cannot be split they're a pain
153 set ( srcd "${CMAKE_CURRENT_SOURCE_DIR}" )
154
155 # 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 #
159 include_directories("${srcd}/src/messaging;${srcd}/src/json;${srcd}/src/alarm;${srcd}/src/metrics;${srcd}/src/config;${srcd}/src/rest/model;${srcd}/ext/jsmn")
160
161 # Compiler flags
162 #
163 set( CMAKE_POSITION_INDEPENDENT_CODE ON )
164 set( CMAKE_C_FLAGS "-g " )
165 set( CMAKE_CPP_FLAGS "-g " )
166 set( CMAKE_CXX_FLAGS "-g " )
167 if( 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 " )
171 else()
172         message( "+++ profiling is off" )
173 endif()
174 unset( GPROF CACHE )                                    # we don't want this to persist
175
176
177 # --------------------- external building --------------------------------------------------------
178 execute_process( COMMAND  git submodule update --init -- ext/jsmn
179                 WORKING_DIRECTORY  ${CMAKE_CURRENT_SOURCE_DIR}
180         )
181
182
183 # --------------------- framework building --------------------------------------------------------
184 # Include modules
185 add_subdirectory( src/json )
186 add_subdirectory( src/messaging )
187 add_subdirectory( src/xapp )
188 add_subdirectory( src/alarm )
189 add_subdirectory( src/metrics )
190 add_subdirectory( src/config )
191 add_subdirectory( src/rest )
192 #add_subdirectory( doc )                                # this will auto skip if {X}fm is not available
193
194 # shared and static libraries are built from the same object files.
195 #
196 add_library( ricxfcpp_shared SHARED
197         "$<TARGET_OBJECTS:message_objects>;$<TARGET_OBJECTS:json_objects>;$<TARGET_OBJECTS:alarm_objects>;$<TARGET_OBJECTS:metrics_objects>;$<TARGET_OBJECTS:config_objects>;$<TARGET_OBJECTS:xapp_objects>"
198 )
199 set_target_properties( ricxfcpp_shared
200         PROPERTIES
201         OUTPUT_NAME "ricxfcpp"
202         SOVERSION ${major_version}
203         VERSION ${major_version}.${minor_version}.${patch_level}
204 )
205 #target_include_directories( ricxfcpp_shared PUBLIC "src/alarm" "src/metrics" "src/messenger" "src/xapp" )
206
207 # we only build/export the static archive (.a) if generating a dev package
208 if( DEV_PKG )
209         add_library( ricxfcpp_static STATIC
210                 "$<TARGET_OBJECTS:message_objects>;$<TARGET_OBJECTS:json_objects>;$<TARGET_OBJECTS:alarm_objects>;$<TARGET_OBJECTS:config_objects>;$<TARGET_OBJECTS:metrics_objects>;$<TARGET_OBJECTS:xapp_objects>"
211         )
212         set_target_properties( ricxfcpp_static
213                 PROPERTIES
214                 OUTPUT_NAME "ricxfcpp"
215                 SOVERSION ${major_version}
216                 VERSION ${major_version}.${minor_version}.${patch_level}
217         )
218 #       target_include_directories( ricxfcpp_static PUBLIC "src/alarm" "src/metrics" "src/messenger" "src/xapp" )
219 endif()
220
221 # -------- unit testing -------------------------------------------------------
222 enable_testing()
223 add_test(
224         NAME drive_unit_tests
225         COMMAND bash ../test/unit_test.sh -q CMBUILD=${CMAKE_CURRENT_BINARY_DIR}
226         WORKING_DIRECTORY ../test
227 )
228
229
230 # ------------- packaging -----------------------------------------------------
231
232 # Define what should be installed, and where they should go. For dev package we install
233 # only the RMr headers, man pages and archive (.a) files.  The run-time package gets just
234 # the library (.so) files and nothing more.
235 #
236 if( DEV_PKG )
237         set( target_list "ricxfcpp_static" )
238 else()
239         set( target_list "ricxfcpp_shared" )
240 endif()
241
242 install( TARGETS ${target_list} EXPORT LibraryConfig
243         LIBRARY  DESTINATION ${install_lib}
244         ARCHIVE  DESTINATION ${install_lib}
245         PUBLIC_HEADER DESTINATION ${install_inc}
246 )
247
248 unset( DEV_PKG  CACHE )                 # prevent from being a hidden setting if user redoes things
249
250 IF( EXISTS "${CMAKE_ROOT}/Modules/CPack.cmake" )
251         include( InstallRequiredSystemLibraries )
252
253         set( CPACK_DEBIAN_PACKAGE_NAME ${deb_pkg_name} )
254         set( CPACK_RPM_PACKAGE_NAME ${rpm_pkg_name} )
255
256         set( CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION "/usr/local;/usr/local/bin;/usr/local/include;/usr/local/share;/usr/local/lib" )
257
258         set( CPACK_set_DESTDIR "on" )
259         set( CPACK_PACKAGING_INSTALL_PREFIX "${install_root}" )
260         set( CPACK_GENERATOR "${pkg_list}" )
261
262         set( CPACK_PACKAGE_DESCRIPTION "C++ framework for RIC xAPPs based on RMR." )
263         set( CPACK_PACKAGE_DESCRIPTION_SUMMARY "RIC xAPP C++ framework library" )
264         set( CPACK_PACKAGE_VENDOR "None" )
265         set( CPACK_PACKAGE_CONTACT "None" )
266         set( CPACK_PACKAGE_VERSION_MAJOR "${major_version}" )
267         set( CPACK_PACKAGE_VERSION_MINOR "${minor_version}" )
268         set( CPACK_PACKAGE_VERSION_PATCH "${patch_level}" )
269         set( CPACK_PACKAGE "${pkg_label}" )                                             # generic name for old versions of cpack
270         set( CPACK_DEBIAN_FILE_NAME "${deb_pkg_label}.deb" )
271         set( CPACK_RPM_FILE_NAME "${rpm_pkg_label}.rpm" )
272
273         # Future: define dependencies on RMR and other libs
274
275         set( CPACK_DEBIAN_PACKAGE_PRIORITY "optional" )
276         set( CPACK_DEBIAN_PACKAGE_SECTION "ric" )
277         set( CPACK_DEBIAN_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR} )
278         set( CPACK_RPM_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR} )
279
280         # this seems ingnored if included
281         #set( CPACK_COMPONENTS_ALL Libraries ApplicationData )
282
283         INCLUDE( CPack )
284 ENDIF()