blob: 7e273584fb7e3cca19f05a98fabd6f612db53136 [file] [log] [blame]
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -04001#
2#==================================================================================
E. Scott Daniels29d87162019-06-12 13:48:25 -04003# Copyright (c) 2019 Nokia
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -04004# Copyright (c) 2018-2019 AT&T Intellectual Property.
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#==================================================================================
18#
19
E. Scott Danielsf6f4f122019-06-18 16:02:17 -040020# This CMake definition supports several -D command line options:
21#
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# -DPACK_EXTERNALS=1 Include external libraries used to build in the run-time package
26# -DSKIP_EXTERNALS=1 Do not use Nano/NNG submodules when building; uee installed packages
27# -DMAN_PREFIX=<path> Supply a path where man pages are installed (default: /usr/share/man)
28
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040029project( rmr LANGUAGES C )
30cmake_minimum_required( VERSION 3.5 )
31
E. Scott Danielsd7109572019-04-18 14:01:16 +000032set( major_version "1" ) # should be automatically populated from git tag later, but until CI process sets a tag we use this
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040033set( minor_version "0" )
E. Scott Danielsa7610c62019-07-11 10:24:01 -040034set( patch_level "37" )
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040035
36set( install_root "${CMAKE_INSTALL_PREFIX}" )
37set( install_lib "lib" )
38set( install_inc "include/rmr" )
39if( MAN_PREFIX )
40 set( install_man ${MAN_PREFIX} ) # is there a cmake var for this -- can't find one
41else()
42 set( install_man "/usr/share/man" ) # this needs to be fixed so it's not hard coded
43endif()
44
45# Must use GNUInstallDirs to install libraries into correct
46# locations on all platforms.
47include( GNUInstallDirs )
48
E. Scott Danielsa9435332019-05-09 14:39:19 +000049# nano/nng install using LIBDIR as established by the gnu include; it varies from system
50# to system, and we don't trust that it is always set, so we default to lib.
51#
52if( NOT CMAKE_INSTALL_LIBDIR )
53 set( CMAKE_INSTALL_LIBDIR "lib" )
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040054endif()
55
E. Scott Daniels68c5cf12019-04-12 15:14:40 +000056# ---------------- extract some things from git ------------------------------
57
58# commit id for the version string
E. Scott Daniels29d87162019-06-12 13:48:25 -040059execute_process(
60 COMMAND bash -c "git rev-parse --short HEAD|awk '{printf\"%s\", $0}'"
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040061 OUTPUT_VARIABLE git_id
62)
63
E. Scott Daniels68c5cf12019-04-12 15:14:40 +000064# version information for library names and version string
E. Scott Daniels29d87162019-06-12 13:48:25 -040065execute_process(
E. Scott Daniels68c5cf12019-04-12 15:14:40 +000066 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' "
67 OUTPUT_VARIABLE mmp_version_str
68 ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE
69)
70
71# extra indicator to show that the build was based on modified file(s) and not the true commit
E. Scott Daniels29d87162019-06-12 13:48:25 -040072# (no hope of reproducing the exact library for debugging). Used only for the internal version
E. Scott Daniels68c5cf12019-04-12 15:14:40 +000073# string.
E. Scott Daniels29d87162019-06-12 13:48:25 -040074execute_process(
75 COMMAND bash -c "git diff --shortstat|awk -v fmt=%s -v r=-rotten '{ s=r } END { printf( fmt, s ) }'"
E. Scott Daniels68c5cf12019-04-12 15:14:40 +000076 OUTPUT_VARIABLE spoiled_str
77)
78
E. Scott Danielsd7109572019-04-18 14:01:16 +000079# uncomment these lines once CI starts adding a tag on merge
80#set( mmp_version ${mmp_version_str} )
81#list( GET mmp_version 0 major_version )
82#list( GET mmp_version 1 minor_version )
83#list( GET mmp_version 2 patch_level )
E. Scott Daniels68c5cf12019-04-12 15:14:40 +000084
E. Scott Daniels68c5cf12019-04-12 15:14:40 +000085
86# define constants used in the version string
E. Scott Daniels29d87162019-06-12 13:48:25 -040087add_definitions(
88 -DGIT_ID=${git_id}
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040089 -DMAJOR_VER=${major_version}
90 -DMINOR_VER=${minor_version}
E. Scott Danielsd4f18ba2019-06-17 15:08:17 -040091 -DPATCH_VER=${patch_level}
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040092)
93
E. Scott Daniels29d87162019-06-12 13:48:25 -040094# ---------------- suss out pkg gen tools so we don't fail generating packages that the system cannot support --------------
95
E. Scott Danielsf6f4f122019-06-18 16:02:17 -040096# deb packages use underbars, and package manager(s) seem to flip the *_64 processor type
97# to the old (non-standard) amd64 string, so we do it here for consistency. Set -DPRESERVE_PTYPE=1
98# to prevent the flip. RPM packages will always be given the system generated processor type string.
99#
100if( ${CMAKE_SYSTEM_PROCESSOR} MATCHES "x86_64" )
101 if( NOT PRESERVE_PTYPE )
102 set( deb_sys_name "amd64" )
103 else()
104 set( deb_sys_name ${CMAKE_SYSTEM_PROCESSOR} )
105 endif()
106else()
107 set( deb_sys_name ${CMAKE_SYSTEM_PROCESSOR} )
108endif()
109unset( PRESERVE_PTYPE CACHE ) # we don't want this to persist
110
111set( rpm_sys_name ${CMAKE_SYSTEM_PROCESSOR} )
E. Scott Daniels29d87162019-06-12 13:48:25 -0400112
113if( DEV_PKG )
E. Scott Danielsf6f4f122019-06-18 16:02:17 -0400114 set( deb_pkg_name "rmr-dev" )
115 set( rpm_pkg_name "rmr-devel" )
E. Scott Danielsd4f18ba2019-06-17 15:08:17 -0400116else()
E. Scott Danielsf6f4f122019-06-18 16:02:17 -0400117 set( deb_pkg_name "rmr" )
118 set( rpm_pkg_name "rmr" )
E. Scott Daniels29d87162019-06-12 13:48:25 -0400119endif()
E. Scott Danielsf6f4f122019-06-18 16:02:17 -0400120
121set( pkg_label "rmr${spoiled_str}-${major_version}.${minor_version}.${patch_level}-${sys_name}" )
122set( rpm_pkg_label "${rpm_pkg_name}${spoiled_str}-${major_version}.${minor_version}.${patch_level}-${rpm_sys_name}" )
123set( deb_pkg_label "${deb_pkg_name}${spoiled_str}_${major_version}.${minor_version}.${patch_level}_${deb_sys_name}" )
124message( "+++ pkg name: ${deb_pkg_label}.deb" )
125message( "+++ pkg name: ${rpm_pkg_label}.rpm" )
126
E. Scott Daniels29d87162019-06-12 13:48:25 -0400127set( out_yml /tmp/build_output.yml ) # we will record package names (we record only untainted names)
128find_program( rpm NAMES rpmbuild ) # rpm package gen requires this to be installed
129
130set( gen_rpm 0 )
131if( "${rpm}" MATCHES "rpm-NOTFOUND" ) # cannot build rpm
132 set( pkg_list "DEB" )
133 message( "### make package will generate only deb package; cannot find support to generate rpm packages" )
134else()
135 set( pkg_list "DEB;RPM" )
136 set( gen_rpm 1 )
137 message( "+++ make package will generate both deb and rpm packages" )
138endif()
139
140execute_process(
141 COMMAND bash -c "printf '# RMr build generated list of package paths\n---\n' >${out_yml}"
E. Scott Daniels8a03ad02019-06-11 15:57:02 -0400142)
143
E. Scott Daniels29d87162019-06-12 13:48:25 -0400144execute_process(
E. Scott Danielsd4f18ba2019-06-17 15:08:17 -0400145 COMMAND bash -c " echo deb: ${CMAKE_CURRENT_BINARY_DIR}/${deb_pkg_label}.deb >>${out_yml}"
E. Scott Daniels29d87162019-06-12 13:48:25 -0400146)
147
148if( gen_rpm )
149 execute_process(
E. Scott Danielsd4f18ba2019-06-17 15:08:17 -0400150 COMMAND bash -c " echo rpm: ${CMAKE_CURRENT_BINARY_DIR}/${rpm_pkg_label}.rpm >>${out_yml}"
E. Scott Daniels29d87162019-06-12 13:48:25 -0400151 )
152endif()
153
154execute_process(
155 COMMAND bash -c "printf '...\n' >>${out_yml}"
156)
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400157
158# ---------------- setup nano/nng things ---------------------------------------
159if( NOT SKIP_EXTERNALS )
160 set( need_ext 1 ) # we force dependences on these for right build order
161 execute_process( COMMAND git submodule update --init -- ext/nng
162 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
163 )
164
165 execute_process( COMMAND git submodule update --init -- ext/nanomsg
166 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
167 )
168 if( NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/ext/nng/CMakeLists.txt )
169 message( FATAL_ERROR "cannot find nng in our git source as a submodule: Giving up" ) # this will abort which seems wrong, but tdam.
170 endif()
171
172 include( ExternalProject )
173 ExternalProject_Add(
174 ext_nng
175 SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ext/nng"
176 CMAKE_ARGS "-DBUILD_SHARED_LIBS=1"
177 CMAKE_ARGS "-DCMAKE_INSTALL_PREFIX=${CMAKE_CURRENT_BINARY_DIR}"
178 BUILD_COMMAND "make"
179 UPDATE_COMMAND ""
180 TEST_COMMAND ""
181 STEP_TARGETS build
182 )
183 ExternalProject_Add(
184 nanomsg
185 SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ext/nanomsg"
186 BUILD_COMMAND "make"
187 UPDATE_COMMAND ""
188 CMAKE_ARGS "-DCMAKE_INSTALL_PREFIX=${CMAKE_CURRENT_BINARY_DIR}"
189 TEST_COMMAND ""
190 STEP_TARGETS build
191 )
192
193 # it seems impossible to install everything that lands in {bin}/lib, so we need to
194 # hard code (shudder) some things. Even worse, we have to make exceptions for
195 # builds on apple (osx) since their naming convention wandered off the path.
196 set( nng_major 1 )
197 set( nng_minor 1.0 )
198 set( nano_major 5 )
199 set( nano_minor 1.0 )
200 set( so ${CMAKE_SHARED_LIBRARY_SUFFIX} ) # cmake variables are impossibly long :(
201 if( NOT APPLE ) # probably breaks in windows, but idc
202 set( nng_so_suffix ${so} )
203 set( nng_so_suffix_m ${so}.${nng_major} )
204 set( nng_so_suffix_mm ${so}.${nng_major}.${nng_minor} )
205
206 set( nano_so_suffix ${so} )
207 set( nano_so_suffix_m ${so}.${nano_major} )
208 set( nano_so_suffix_mm ${so}.${nano_major}.${nano_minor} )
209 else()
210 # of course apple puts versions before the suffix :(
211 set( nng_so_suffix ${so} ) # so has a lead dot, so NOT needed
212 set( nng_so_suffix_m ".${nng_major}${so}" ) # these need leading dots
213 set( nng_so_suffix_mm ".${nng_major}.${nng_minor}${so}" )
214
215 set( nano_so_suffix ${so} )
216 set( nano_so_suffix_m ".${nano_major}${so}" )
217 set( nano_so_suffix_mm ".${nano_major}.${nano_minor}${so}" )
218 endif()
219
220 message( "+++ installing nano/nng with: ${nano_major}.${nano_minor} | ${nng_major}.${nng_minor}" )
221else()
E. Scott Daniels29d87162019-06-12 13:48:25 -0400222 if( PACK_EXTERNALS )
223 unset( SKIP_EXTERNALS CACHE ) # must remove so as not to trap user into a never ending failure
224 unset( PACK_EXTERNALS CACHE )
225 message( FATAL_ERROR "ERROR: PACK_EXTERNALS can be set only if SKIP_EXTERNALS is unset (=0, or not supplied on command line)" )
226 endif()
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400227 set( need_ext 0 )
228endif()
E. Scott Daniels29d87162019-06-12 13:48:25 -0400229
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400230
231
232# this gets us round a chicken/egg problem. include files don't exist until make is run
233# but Cmake insists on having these exist when we add them to include directories to
234# enable rmr code to find them after we build them.
235#
236execute_process( COMMAND "mkdir -p ${CMAKE_CURRENT_BINARY_DIR}/include/nng" )
237include_directories( "${CMAKE_CURRENT_BINARY_DIR}/include" )
238
239
240# Compiler flags
241#
242set( CMAKE_POSITION_INDEPENDENT_CODE ON )
243set( CMAKE_CXX_FLAGS "-g -Wall " )
244
245# Include modules
E. Scott Daniels68c1ab22019-05-17 17:50:59 +0000246add_subdirectory( src/rmr/common )
247add_subdirectory( src/rmr/nanomsg )
248add_subdirectory( src/rmr/nng )
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400249add_subdirectory( doc ) # this will auto skip if {X}fm is not available
250
251
E. Scott Daniels29d87162019-06-12 13:48:25 -0400252# shared and static libraries are built from the same object files.
253# Nanomsg based library (librmr ) while nng based is librmr_nng.
254# library is built by pulling object files from either the nano or nng and common subdirs
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400255#
256add_library( rmr_shared SHARED "$<TARGET_OBJECTS:nano_objects>;$<TARGET_OBJECTS:common_objects>" )
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400257
E. Scott Daniels29d87162019-06-12 13:48:25 -0400258set_target_properties( rmr_shared
259 PROPERTIES
260 OUTPUT_NAME "rmr"
261 SOVERSION ${major_version}
E. Scott Daniels68c5cf12019-04-12 15:14:40 +0000262 VERSION ${major_version}.${minor_version}.${patch_level} )
263
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400264add_library( rmr_nng_shared SHARED "$<TARGET_OBJECTS:nng_objects>;$<TARGET_OBJECTS:common_objects>" )
E. Scott Daniels29d87162019-06-12 13:48:25 -0400265set_target_properties( rmr_nng_shared
266 PROPERTIES
267 OUTPUT_NAME "rmr_nng"
268 SOVERSION ${major_version}
269 VERSION ${major_version}.${minor_version}.${patch_level} )
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400270
E. Scott Daniels29d87162019-06-12 13:48:25 -0400271# we only build/export the static archive (.a) if generating a dev package
272if( DEV_PKG )
273 add_library( rmr_nng_static STATIC "$<TARGET_OBJECTS:nng_objects>;$<TARGET_OBJECTS:common_objects>" )
274 set_target_properties( rmr_nng_static
275 PROPERTIES
276 OUTPUT_NAME "rmr_nng"
277 SOVERSION ${major_version}
278 VERSION ${major_version}.${minor_version}.${patch_level} )
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400279
E. Scott Daniels29d87162019-06-12 13:48:25 -0400280 add_library( rmr_static STATIC "$<TARGET_OBJECTS:nano_objects>;$<TARGET_OBJECTS:common_objects>" )
281
282 set_target_properties( rmr_static
283 PROPERTIES
284 OUTPUT_NAME "rmr"
285 SOVERSION ${major_version}
286 VERSION ${major_version}.${minor_version}.${patch_level} )
287endif()
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400288
289# if externals need to be built, then we must force them to be built first by depending on them
290if( need_ext )
E. Scott Daniels29d87162019-06-12 13:48:25 -0400291 if( DEV_PKG )
292 add_dependencies( rmr_static;rmr_shared nanomsg )
293 add_dependencies( rmr_nng_shared;rmr_nng_static ext_nng )
294 else()
295 add_dependencies( rmr_shared nanomsg )
296 add_dependencies( rmr_nng_shared ext_nng )
297 endif()
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400298endif()
299
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400300#
301if( APPLE )
302 message( "### apple hack: forcing hard coded library paths for nng/nano dynamic libraries" )
303 target_link_libraries( rmr_shared ${CMAKE_CURRENT_BINARY_DIR}/lib/libnanomsg${nano_so_suffix} )
304 target_link_libraries( rmr_nng_shared ${CMAKE_CURRENT_BINARY_DIR}/lib/libnng${nng_so_suffix} )
305endif()
306
E. Scott Danielsf6f4f122019-06-18 16:02:17 -0400307# Define what should be installed, and where they should go. For dev package we install
308# only the RMr headers, man pages and archive (.a) files. The run-time package gets just
309# the library (.so) files and nothing more.
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400310#
E. Scott Daniels29d87162019-06-12 13:48:25 -0400311if( DEV_PKG )
E. Scott Danielsf6f4f122019-06-18 16:02:17 -0400312 set( target_list "rmr_nng_static;rmr_static" )
E. Scott Daniels29d87162019-06-12 13:48:25 -0400313else()
314 set( target_list "rmr_nng_shared;rmr_shared" )
315endif()
316
317install( TARGETS ${target_list} EXPORT LibraryConfig
318 LIBRARY DESTINATION ${install_lib}
319 ARCHIVE DESTINATION ${install_lib}
320 PUBLIC_HEADER DESTINATION ${install_inc}
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400321)
322
323
E. Scott Daniels29d87162019-06-12 13:48:25 -0400324unset( DEV_PKG CACHE ) # prevent from being a hiddent setting if user redoes things
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400325
E. Scott Daniels29d87162019-06-12 13:48:25 -0400326# install any nano/nng libraries in to the deb as well, but ONLY if asked for on the 'cmake ..' command
327# (sure would be nice if FILEs allowed for globbing; sadlyy it does not.)
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400328#
E. Scott Daniels29d87162019-06-12 13:48:25 -0400329if( PACK_EXTERNALS )
E. Scott Daniels257323c2019-06-14 12:30:21 -0400330 message( "+++ including nano and nng libraries in the deb" )
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400331 install( FILES
E. Scott Danielsa9435332019-05-09 14:39:19 +0000332 ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}/libnanomsg${nano_so_suffix}
333 ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}/libnanomsg${nano_so_suffix_m}
334 ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}/libnanomsg${nano_so_suffix_mm}
335 ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}/libnng${nng_so_suffix}
336 ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}/libnng${nng_so_suffix_m}
337 ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}/libnng${nng_so_suffix_mm}
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400338
339 DESTINATION ${install_lib}
340 )
341endif()
342
E. Scott Daniels257323c2019-06-14 12:30:21 -0400343unset( SKIP_EXTERNALS CACHE ) # prevent these from being applied next build unless specifically set on comd line
344unset( PACK_EXTERNALS CACHE )
345
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400346IF( EXISTS "${CMAKE_ROOT}/Modules/CPack.cmake" )
347 include( InstallRequiredSystemLibraries )
348
E. Scott Daniels78da4c92019-06-19 10:59:18 -0400349 set( CPACK_DEBIAN_PACKAGE_NAME ${deb_pkg_name} )
350 set( CPACK_RPM_PACKAGE_NAME ${rpm_pkg_name} )
351
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400352 set( CPACK_set_DESTDIR "on" )
353 set( CPACK_PACKAGING_INSTALL_PREFIX "${install_root}" )
E. Scott Daniels29d87162019-06-12 13:48:25 -0400354 set( CPACK_GENERATOR "${pkg_list}" )
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400355
356 set( CPACK_PACKAGE_DESCRIPTION "Thin library for RIC xAPP messaging routed based on message type." )
357 set( CPACK_PACKAGE_DESCRIPTION_SUMMARY "RIC message routing library" )
358 set( CPACK_PACKAGE_VENDOR "None" )
359 set( CPACK_PACKAGE_CONTACT "None" )
360 set( CPACK_PACKAGE_VERSION_MAJOR "${major_version}" )
361 set( CPACK_PACKAGE_VERSION_MINOR "${minor_version}" )
362 set( CPACK_PACKAGE_VERSION_PATCH "${patch_level}" )
E. Scott Danielsf6f4f122019-06-18 16:02:17 -0400363 set( CPACK_PACKAGE "${pkg_label}" ) # generic name for old versions of cpack
E. Scott Danielsd4f18ba2019-06-17 15:08:17 -0400364 set( CPACK_DEBIAN_FILE_NAME "${deb_pkg_label}.deb" )
365 set( CPACK_RPM_FILE_NAME "${rpm_pkg_label}.rpm" )
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400366
367 # we build and ship the libraries, so there is NO dependency
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400368
369 set( CPACK_DEBIAN_PACKAGE_PRIORITY "optional" )
370 set( CPACK_DEBIAN_PACKAGE_SECTION "ric" )
371 set( CPACK_DEBIAN_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR} )
E. Scott Daniels29d87162019-06-12 13:48:25 -0400372 set( CPACK_RPM_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR} )
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -0400373
374 # this seems ingnored if included
375 #set( CPACK_COMPONENTS_ALL Libraries ApplicationData )
376
377 INCLUDE( CPack )
378ENDIF()