named 0.10 release
[profile/ivi/automotive-message-broker.git] / CMakeLists.txt
1 project(automotive-message-broker)
2 cmake_minimum_required(VERSION 2.8)
3
4 set(CMAKE_BUILD_TYPE, Debug)
5
6 include(FindPkgConfig)
7
8 set(PROJECT_NAME "automotive-message-broker")
9 set(PROJECT_VERSION "0.9.9")
10 set(PROJECT_CODENAME "chevelle")
11
12 add_definitions(-DPROJECT_VERSION="${PROJECT_VERSION}")
13 add_definitions(-DPROJECT_NAME="${PROJECT_NAME}")
14 add_definitions(-DPROJECT_CODENAME="${PROJECT_CODENAME}")
15
16 set (LIB_SUFFIX "" CACHE STRING "Define suffix of directory name (32/64)" )
17 set (LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/${CMAKE_LIBRARY_ARCHITECTURE}" CACHE STRING "Directory where lib will install")
18 set (INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include" CACHE PATH "The directory the headers are installed in")
19 set (DOC_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/share/doc/packages/${PROJECT_NAME}" CACHE PATH "The directory the docs will be installed to")
20
21 option(use_qtcore "Use QCoreApplication mainloop " OFF)
22 option(websocket_plugin "websocket source and sink plugins" OFF)
23 option(tpms_plugin "TPMS plugin " OFF)
24 option(obd_plugin "OBD-II plugin" OFF)
25 option(database_plugin "Database plugins" OFF)
26 option(qt_bindings "AMB Qt DBus bindings" OFF)
27 option(opencvlux_plugin "OpenCV Lux plugin" OFF)
28 option(gpsd_plugin "gpsd location plugin" OFF)
29 option(murphy_plugin "murphy policy framework plugin" OFF)
30
31 if(opencvlux_plugin)
32    message(STATUS "OpenCV Lux plugin enabled")
33
34 endif(opencvlux_plugin)
35
36 include (CMakeForceCompiler)
37 option(ENABLE_ICECC "Enable icecc checking, for distributed compilation" ON)
38
39 if (ENABLE_ICECC)
40    find_program(ICECC /usr/lib/icecc/bin/c++)
41     if (ICECC)
42         message(STATUS "icecc will be used for distributed compiling")
43         cmake_force_cxx_compiler(${ICECC} icecc)
44     else(ICECC)
45         message(STATUS "Not using icecc")
46     endif(ICECC)
47 endif(ENABLE_ICECC)
48
49 find_library(libtool_LIBRARY ltdl DOC "Libtool libraries")
50 find_path(libtool_INCLUDE_DIR ltdl.h DOC "Libtool headers")
51
52 if(libtool_LIBRARY)
53      message(STATUS "libtool found")
54 else(libtool_LIBRARY)
55      message(FATAL_ERROR "libtool missing.  please install libtool")
56 endif(libtool_LIBRARY)
57
58 find_package(Boost REQUIRED)
59
60
61 pkg_check_modules(glib REQUIRED glib-2.0 gobject-2.0)
62 pkg_check_modules(json REQUIRED json)
63
64
65 add_definitions(-std=c++0x)
66 add_definitions(-DDBusServiceName="org.automotive.message.broker")
67
68 set(include_dirs ${libtool_INCLUDE_DIR} ${glib_INCLUDE_DIRS} ${gio_INCLUDE_DIRS} ${Boost_INCLUDE_DIRS} ${json_INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR}/lib)
69 set(link_libraries -lamb ${libtool_LIBRARY} ${glib_LIBRARIES} ${json_LIBRARIES} -L${CMAKE_CURRENT_BINARY_DIR}/lib)
70
71 if(use_qtcore)
72         message(STATUS "using Qt mainloop")
73
74         find_package( Qt4 REQUIRED )
75
76         include(${QT_USE_FILE})
77         set(include_dirs ${include_dirs} ${QT_INCLUDE_DIRS})
78         set(link_libraries ${link_libraries} ${QT_LIBRARIES})
79
80         add_definitions(-DUSE_QT_CORE)
81         add_definitions(-DQT_NO_KEYWORDS)
82
83 endif(use_qtcore)
84
85 set(ARCHIVE_NAME ${CMAKE_PROJECT_NAME}-${PROJECT_VERSION})
86 add_custom_target(dist COMMAND git archive --prefix=${ARCHIVE_NAME}/ HEAD | bzip2 > ${CMAKE_BINARY_DIR}/${ARCHIVE_NAME}.tar.bz2 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
87
88 configure_file("${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake" "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" IMMEDIATE @ONLY)
89 add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
90
91 # packaging stuff:
92 # Common things to every type of package
93 SET(CPACK_PACKAGE_DESCRIPTION "daemon to access vehicle data")
94 SET(CPACK_PACKAGE_NAME "automotive-message-broker")
95 SET(CPACK_PACKAGE_EXECUTABLES "ambd")
96 SET(CPACK_PACKAGE_VERSION "${PROJECT_VERSION}")
97 SET(CPACK_STRIP_FILES true)
98 SET(CPACK_PACKAGE_CONTACT "tripzero.kev@gmail.com")
99 SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/COPYING")
100
101
102 # Always build .tar.gz and .sh files
103 SET(CPACK_GENERATOR "STGZ;TGZ")
104
105 SET(CPACK_GENERATOR "${CPACK_GENERATOR};DEB")
106 SET(CPACK_DEBIAN_PACKAGE_DEPENDS "gpsd (>=2.0), libopencv, libjson0, libltdl7")
107 SET(CPACK_DEBIAN_PACKAGE_DESCRIPTION ${CPACK_PACKAGE_DESCRIPTION})
108
109 INCLUDE(CPack)
110
111 add_subdirectory(lib)
112 add_subdirectory(ambd)
113 add_subdirectory(plugins)
114 add_subdirectory(docs)
115 add_subdirectory(tests)