X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2FCMakeLists.txt;h=1c64ad269ab6eab7a676316c402dfa7ed48b5014;hb=da2824b15151f3fcecb43a42db08d1875bd30558;hp=f2d41bd685e7c3a263e22407e27b6d4b7909042b;hpb=874b9a78caa3cfa23321ea488708c0b254b3fe92;p=src%2Fapp-framework-main.git diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f2d41bd..1c64ad2 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -16,10 +16,11 @@ # limitations under the License. ########################################################################### +cmake_minimum_required(VERSION 2.8) + include(FindPkgConfig) pkg_check_modules(EXTRAS REQUIRED - libzip>=0.11 libxml-2.0 openssl xmlsec1 xmlsec1-openssl @@ -31,13 +32,30 @@ add_compile_options(${EXTRAS_CFLAGS}) include_directories(${EXTRAS_INCLUDE_DIRS}) link_libraries(${EXTRAS_LIBRARIES}) +if(USE_LIBZIP) + pkg_check_modules(LIBZIP REQUIRED libzip>=0.11) + add_compile_options(${LIBZIP_CFLAGS}) + include_directories(${LIBZIP_INCLUDE_DIRS}) + link_libraries(${LIBZIP_LIBRARIES}) + add_definitions(-DUSE_LIBZIP=1) +else(USE_LIBZIP) + add_definitions(-DUSE_LIBZIP=0) +endif(USE_LIBZIP) + ########################################################################### -include_directories(simulation) +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_compile_options(-Wall -Wno-pointer-sign) +add_compile_options(-Wall -Wno-pointer-sign -Werror=maybe-uninitialized) add_compile_options(-ffunction-sections -fdata-sections) add_compile_options(-fPIC) add_compile_options(-Wl,--gc-sections) @@ -78,30 +96,30 @@ add_library(secwrp ) add_library(afm - af-db.c - af-launch.c - af-run.c + afm-db.c + afm-launch.c + afm-run.c ) 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) - add_executable(afm-user-daemon afm-user-daemon.c) target_link_libraries(afm-user-daemon 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 wgtpkg-sign wgtpkg-pack wgtpkg-info wgtpkg-installer DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}) install(TARGETS afm-user-daemon DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}) +install(TARGETS afm-system-daemon DESTINATION ${CMAKE_INSTALL_FULL_BINDIR})