X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2FCMakeLists.txt;h=22765fba2581a778d35853bb6557558649ac15f9;hb=35343f762be7c6b00e0a23cacf7460f741de8bd3;hp=807d30d1a5901f11328900ee5ff28356d0cd2385;hpb=eab449dec6b13464db5277c54ac23fc30d896353;p=src%2Fapp-framework-main.git diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 807d30d..22765fb 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -16,31 +16,21 @@ # limitations under the License. ########################################################################### -include(FindPkgConfig) - -pkg_check_modules(EXTRAS REQUIRED - libzip>=0.11 - libxml-2.0 - openssl - xmlsec1 xmlsec1-openssl - json-c - dbus-1 - ) - -add_compile_options(${EXTRAS_CFLAGS}) -include_directories(${EXTRAS_INCLUDE_DIRS}) -link_libraries(${EXTRAS_LIBRARIES}) +cmake_minimum_required(VERSION 2.8) ########################################################################### -include_directories(simulation) - -########################################################################### +link_libraries(-Wl,--as-needed -Wl,--gc-sections) -add_compile_options(-Wall -Wno-pointer-sign) +add_compile_options(-Wall -Wextra -Wconversion) +add_compile_options(-Wno-unused-parameter) # frankly not using a parameter does it care? +add_compile_options(-Werror=maybe-uninitialized) +add_compile_options(-Werror=implicit-function-declaration) +add_compile_options(-Wno-pointer-sign) # for XmlChar handling add_compile_options(-ffunction-sections -fdata-sections) +add_compile_options(-Wl,--as-needed -Wl,--gc-sections) add_compile_options(-fPIC) -add_compile_options(-Wl,--gc-sections) +#add_definitions(-DNDEBUG) set(CMAKE_C_FLAGS_PROFILING "-g -O0 -pg -Wp,-U_FORTIFY_SOURCE") set(CMAKE_C_FLAGS_DEBUG "-g -O0 -ggdb -Wp,-U_FORTIFY_SOURCE") @@ -49,59 +39,122 @@ set(CMAKE_C_FLAGS_CCOV "-g -O2 --coverage") ########################################################################### -add_library(wgtpkg +include(FindPkgConfig) + +pkg_check_modules(EXTRAS REQUIRED libxml-2.0 openssl xmlsec1 xmlsec1-openssl json-c libsystemd) +add_compile_options(${EXTRAS_CFLAGS}) +include_directories(${EXTRAS_INCLUDE_DIRS}) +link_libraries(${EXTRAS_LIBRARIES}) + +pkg_check_modules(libzip libzip>=0.11) +if(libzip_FOUND) + add_compile_options(${libzip_CFLAGS}) + include_directories(${libzip_INCLUDE_DIRS}) + link_libraries(${libzip_LIBRARIES}) + add_definitions(-DUSE_LIBZIP=1) +else() + add_definitions(-DUSE_LIBZIP=0) +endif() + +########################################################################### + +if(USE_SIMULATION) + include_directories(simulation) +else(USE_SIMULATION) + pkg_check_modules(SECMGR REQUIRED security-manager) + add_compile_options(${SECMGR_CFLAGS}) + include_directories(${SECMGR_INCLUDE_DIRS}) + link_libraries(${SECMGR_LIBRARIES}) +endif(USE_SIMULATION) + +########################################################################### + +add_library(wgtpkg STATIC wgtpkg-base64.c wgtpkg-certs.c wgtpkg-digsig.c wgtpkg-files.c wgtpkg-install.c wgtpkg-permissions.c + wgtpkg-uninstall.c wgtpkg-workdir.c wgtpkg-xmlsec.c wgtpkg-zip.c ) -add_library(utils +add_library(utils STATIC utils-dir.c utils-jbus.c + utils-json.c verbose.c ) -add_library(wgt +add_library(wgt STATIC wgt-config.c wgt-info.c wgt.c ) -add_library(secwrp +add_library(secwrp STATIC secmgr-wrap.c ) -add_library(afm - af-db.c - af-launch.c - af-run.c +add_library(afm STATIC + afm-db.c + afm-launch.c + afm-launch-mode.c + afm-run.c ) +########################################################################### +# packaging tools + +MESSAGE(STATUS "Creating packaging tools") + add_executable(wgtpkg-sign wgtpkg-sign.c) target_link_libraries(wgtpkg-sign wgtpkg utils) - add_executable(wgtpkg-pack wgtpkg-pack.c) target_link_libraries(wgtpkg-pack wgtpkg utils) - add_executable(wgtpkg-info wgtpkg-info.c) target_link_libraries(wgtpkg-info wgtpkg wgt utils) - add_executable(wgtpkg-installer wgtpkg-installer.c) target_link_libraries(wgtpkg-installer wgtpkg wgt secwrp utils) +install(TARGETS wgtpkg-sign wgtpkg-pack wgtpkg-info wgtpkg-installer DESTINATION ${CMAKE_INSTALL_BINDIR}) + +########################################################################### +# the daemons + +MESSAGE(STATUS "Creating daemons") + +add_executable(afm-user-daemon afm-user-daemon.c) +target_link_libraries(afm-user-daemon afm secwrp wgt utils ) +install(TARGETS afm-user-daemon DESTINATION ${CMAKE_INSTALL_BINDIR}) -add_executable(af-usrd af-usrd.c) -target_link_libraries(af-usrd afm secwrp wgt utils) +add_executable(afm-system-daemon afm-system-daemon.c) +target_link_libraries(afm-system-daemon wgtpkg afm secwrp wgt utils) +install(TARGETS afm-system-daemon DESTINATION ${CMAKE_INSTALL_BINDIR}) -install(TARGETS wgtpkg-sign wgtpkg-pack wgtpkg-info wgtpkg-installer DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}) -install(TARGETS af-usrd DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}) +########################################################################### +# the plugin for afb + +pkg_check_modules(afb afb-daemon) +if(afb_FOUND) + MESSAGE(STATUS "Creation afm-main-plugin for AFB-DAEMON") + pkg_get_variable(afb_plugin_install_dir afb-daemon plugin_install_dir) + add_library(afm-main-plugin MODULE afm-main-plugin.c) + target_compile_options(afm-main-plugin PRIVATE ${afb_CFLAGS}) + target_include_directories(afm-main-plugin PRIVATE ${afb_INCLUDE_DIRS}) + target_link_libraries(afm-main-plugin utils ${afb_LIBRARIES}) + set_target_properties(afm-main-plugin PROPERTIES + PREFIX "" + LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/afm-main-plugin.export-map" + ) + INSTALL(TARGETS afm-main-plugin LIBRARY DESTINATION ${afb_plugin_install_dir}) +else() + MESSAGE(STATUS "Not creating the plugin for AFB-DAEMON") +endif()