X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2FCMakeLists.txt;h=99216600b5d24c02d4a33025cc798960174e6c76;hb=e90179e12ad1773be772fc497e785c26cef6a8b8;hp=e7b946b3c576feeefc3828ed68f52da0572a56fc;hpb=1a67d1b401cbf132687b5aaea52ca7875edaa1f9;p=src%2Fapp-framework-main.git diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e7b946b..9921660 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -57,11 +57,20 @@ else() endif() pkg_check_modules(libsystemd libsystemd>=222) -if(NOT libsystemd_FOUND) +if(libsystemd_FOUND) + add_compile_options(${libsystemd_CFLAGS}) + include_directories(${libsystemd_INCLUDE_DIRS}) + link_libraries(${libsystemd_LIBRARIES}) +else() add_definitions(-DNO_LIBSYSTEMD) endif() pkg_check_modules(AFB afb-daemon>=4.99 libafbwsc>=4.99) +if(AFB_FOUND) + add_compile_options(${AFB_CFLAGS}) + include_directories(${AFB_INCLUDE_DIRS}) + link_libraries(${AFB_LIBRARIES}) +endif() ########################################################################### @@ -153,10 +162,6 @@ install(TARGETS wgtpkg-sign wgtpkg-pack wgtpkg-info wgtpkg-installer DESTINATION if(libsystemd_FOUND AND AFB_FOUND) MESSAGE(STATUS "Creating daemons") - add_compile_options(${libsystemd_CFLAGS} ${AFB_CFLAGS}) - include_directories(${libsystemd_INCLUDE_DIRS} ${AFB_INCLUDE_DIRS}) - link_libraries(${libsystemd_LIBRARIES} ${AFB_LIBRARIES}) - add_library(jbus STATIC utils-jbus.c) add_executable(afm-user-daemon afm-user-daemon.c)