X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2FCMakeLists.txt;h=89a181f59a94383f930c06ee6e9736af3113bfdd;hb=96ee1e30743b88780cc9dc975745d8dc03de25ae;hp=b8accc779397e016c2843be25220105d3ab7b5ef;hpb=e1b255b4c6486b0d2df5cd8b2aad8b817876ddf2;p=src%2Fapp-framework-binder.git diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b8accc77..89a181f5 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -16,20 +16,9 @@ # limitations under the License. ########################################################################### -if (NOT DEFINED ALLOW_NO_BINDER) - if (CMAKE_C_COMPILER_VERSION VERSION_LESS 4.9) - message(FATAL_ERROR "Require at least gcc-4.9") - endif(CMAKE_C_COMPILER_VERSION VERSION_LESS 4.9) -endif(ALLOW_NO_BINDER) - -INCLUDE(FindPkgConfig) - -ADD_SUBDIRECTORY(genskel) - -IF(WITH_BINDER) -########################################### - -ADD_SUBDIRECTORY(tests) +if (CMAKE_C_COMPILER_VERSION VERSION_LESS 4.9) + message(FATAL_ERROR "Require at least gcc-4.9") +endif(CMAKE_C_COMPILER_VERSION VERSION_LESS 4.9) ADD_DEFINITIONS(-DBINDING_INSTALL_DIR="${binding_install_dir}") # Always add INFER_EXTENSION (more details in afb-hreq.c) @@ -63,6 +52,7 @@ ADD_LIBRARY(afb-lib STATIC afb-proto-ws.c afb-session.c afb-stub-ws.c + afb-supervision.c afb-trace.c afb-websock.c afb-ws-client.c @@ -92,6 +82,17 @@ TARGET_LINK_LIBRARIES(afb-daemon INSTALL(TARGETS afb-daemon RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) +########################################### +# build and install afb-daemon +########################################### +ADD_EXECUTABLE(afs-supervisor afs-supervisor.c afs-discover.c) +TARGET_LINK_LIBRARIES(afs-supervisor + afb-lib + ${link_libraries} +) +INSTALL(TARGETS afs-supervisor + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) + ########################################### # build and install libafbwsc ########################################### @@ -122,7 +123,3 @@ TARGET_LINK_LIBRARIES(afb-client-demo INSTALL(TARGETS afb-client-demo RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) -########################################### -ELSE(WITH_BINDER) - MESSAGE(WARNING "NOT compiling the binder! but tools are compiled") -ENDIF(WITH_BINDER)