ed1df56284b68366d0b6e1928bb81d0022f0c9bd
[platform/upstream/dbus.git] / cmake / CMakeLists.txt
1 # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
2 list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/modules")
3
4 # we do not need to have WIN32 defined
5 set(CMAKE_LEGACY_CYGWIN_WIN32 0)
6
7 project(dbus)
8
9 # we need to be up to date
10 CMAKE_MINIMUM_REQUIRED(VERSION 2.4.4 FATAL_ERROR)
11 if(COMMAND cmake_policy)
12     cmake_policy(SET CMP0003 NEW)
13 endif(COMMAND cmake_policy)
14
15
16 # detect version
17 include(MacrosAutotools)
18 autoversion(../configure.ac dbus)
19 # used by file version info
20 set (DBUS_PATCH_VERSION "0")
21
22 include(Macros)
23 TIMESTAMP(DBUS_BUILD_TIMESTAMP)
24
25 ########### basic vars ###############
26
27
28 if (DBUSDIR)
29         set(DBUS_INSTALL_DIR "${DBUSDIR}")
30 endif (DBUSDIR)
31 if ($ENV{DBUSDIR})
32         set(DBUS_INSTALL_DIR "$ENV{DBUSDIR}")
33 endif ($ENV{DBUSDIR})
34
35 if (DBUS_INSTALL_DIR)
36         set(CMAKE_INSTALL_PREFIX "${DBUS_INSTALL_DIR}" CACHE PATH "install prefix" FORCE)
37 else (DBUS_INSTALL_DIR)
38         set(DBUS_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}")
39 endif (DBUS_INSTALL_DIR)
40
41 # autotools style
42 if (NOT DATAROOTDIR)
43     set (DATAROOTDIR share)
44 endif()
45
46 if (NOT DATADIR)
47     set (DATADIR ${DATAROOTDIR})
48 endif()
49
50 if (NOT DOCDIR)
51     SET(DOCDIR ${DATAROOTDIR}/doc/dbus)
52 endif()
53
54 if (NOT DBUS_DATADIR)
55     SET(DBUS_DATADIR ${DATADIR})
56 endif()
57
58 set(prefix                   ${DBUS_INSTALL_DIR})
59 set(exec_prefix              ${prefix})
60 set(EXPANDED_LIBDIR          ${DBUS_INSTALL_DIR}/lib)
61 set(EXPANDED_INCLUDEDIR      ${DBUS_INSTALL_DIR}/include)
62 set(EXPANDED_BINDIR          ${DBUS_INSTALL_DIR}/bin)
63 set(EXPANDED_SYSCONFDIR      ${DBUS_INSTALL_DIR}/etc)
64 set(EXPANDED_DATADIR         ${DBUS_INSTALL_DIR}/${DBUS_DATADIR})
65 set(DBUS_MACHINE_UUID_FILE   ${DBUS_INSTALL_DIR}/lib/dbus/machine-id)
66 set(DBUS_BINDIR              ${EXPANDED_BINDIR})
67 set(DBUS_DAEMONDIR                       ${EXPANDED_BINDIR})
68
69
70 #enable building of shared library
71 SET(BUILD_SHARED_LIBS ON)
72
73 if(WIN32)
74     set(INSTALL_TARGETS_DEFAULT_ARGS  RUNTIME DESTINATION "bin" LIBRARY DESTINATION "lib" ARCHIVE DESTINATION "lib")
75 else()
76     set(INSTALL_TARGETS_DEFAULT_ARGS  RUNTIME DESTINATION "${EXPANDED_LIBDIR}" LIBRARY DESTINATION "${EXPANDED_LIBDIR}" ARCHIVE DESTINATION "${EXPANDED_LIBDIR}")
77 endif()
78
79 if (CYGWIN)
80    set (WIN32)
81 endif (CYGWIN)
82
83 # search for required packages
84 if (WIN32)
85     # include local header first to avoid using old installed header
86     set (CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH} ${CMAKE_SOURCE_DIR}/..)
87         find_package(LibIconv)
88     include(Win32Macros)
89     addExplorerWrapper(${CMAKE_PROJECT_NAME})
90 endif (WIN32)
91
92 if(NOT WIN32)
93         option (DBUS_ENABLE_ABSTRACT_SOCKETS "enable support for abstract sockets" ON)
94         set (CMAKE_THREAD_PREFER_PTHREAD ON)
95         include (FindThreads)
96 endif(NOT WIN32)
97
98 #AC_ARG_ENABLE(asserts, AS_HELP_STRING([--enable-asserts],[include assertion checks]),enable_asserts=$enableval,enable_asserts=$USE_MAINTAINER_MODE)
99 option (DBUS_DISABLE_ASSERTS "Disable assertion checking" OFF)
100
101 option (DBUS_ENABLE_STATS "enable bus daemon usage statistics" OFF)
102
103 option (DBUS_ENABLE_STATS "enable bus daemon usage statistics" OFF)
104
105 find_package(EXPAT)
106 find_package(X11)
107
108 # analogous to AC_USE_SYSTEM_EXTENSIONS in configure.ac
109 add_definitions(-D_POSIX_C_SOURCE=199309L -D_GNU_SOURCE)
110
111 # do config checks
112 INCLUDE(ConfigureChecks.cmake)
113
114 # @TODO: how to remove last dir from ${CMAKE_SOURCE_DIR} ?
115 SET(DBUS_SOURCE_DIR ${CMAKE_SOURCE_DIR}/..)
116
117 # make some more macros available
118 include (MacroLibrary)
119
120 if(VCS)
121         set(DBUS_VERBOSE_C_S 1 CACHE STRING "verbose mode" FORCE)
122 endif(VCS)
123
124 if(WIN32)
125         set(CMAKE_DEBUG_POSTFIX "d")
126         if(MSVC)
127                 # controll folders in msvc projects
128                 include(ProjectSourceGroup)
129                 if(NOT GROUP_CODE)
130                         #set(GROUP_CODE split) #cmake default
131                         set(GROUP_CODE flat)
132                 endif(NOT GROUP_CODE)
133                 ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE)
134
135
136                 # Use the highest warning level
137                 if (WALL)
138                         set(WALL 1 CACHE STRING "all warnings"  FORCE)
139                         set(CMAKE_CXX_WARNING_LEVEL 4 CACHE STRING "warning level" FORCE)
140
141                         if(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
142                                 STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
143                         else(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
144                                 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
145                         endif(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
146
147                         if(CMAKE_C_FLAGS MATCHES "/W[0-4]")
148                                 STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
149                         else(CMAKE_C_FLAGS MATCHES "/W[0-4]")
150                                 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W4")
151                         endif(CMAKE_C_FLAGS MATCHES "/W[0-4]")
152                 else (WALL)
153                         set(CMAKE_CXX_WARNING_LEVEL 3 CACHE STRING "warning level" FORCE)
154                 endif (WALL)
155
156                 SET(MSVC_W_ERROR   " /we4028 /we4013 /we4133 /we4047 /we4031 /we4002 /we4003 /we4114")
157                 SET(MSVC_W_DISABLE " /wd4127 /wd4090 /wd4101 /wd4244")
158
159                 SET(CMAKE_C_FLAGS_DEBUG   "${CMAKE_C_FLAGS_DEBUG}   /FIconfig.h ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
160                 SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /FIconfig.h ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
161         endif(MSVC)
162 endif(WIN32)
163
164 if (UNIX AND NOT DBUS_DISABLE_ASSERTS)
165         # required for backtrace
166         SET(CMAKE_C_FLAGS_DEBUG   "${CMAKE_C_FLAGS_DEBUG}   -Wl,--export-dynamic")
167         SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -Wl,--export-dynamic")
168         add_definitions(-DDBUS_BUILT_R_DYNAMIC)
169 endif (UNIX AND NOT DBUS_DISABLE_ASSERTS)
170
171 SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG}  -D_DEBUG")
172
173 #########################################################################
174 # Windows CE (>= 5.0.0)
175 #
176 # WinCE support now relies on the presence of platform files, found in cmake/modules/platform
177 # Cmake 2.8.0 doesn't include WinCE platform files by default, but working ones can be found
178 # on CMake's bugtracker :
179 # http://public.kitware.com/Bug/view.php?id=7919
180 #
181 # for cmake 2.8.0 get the following patch only :
182 # http://public.kitware.com/Bug/file_download.php?file_id=2944&type=bug
183 #
184 # after applying the patch, you can enable the WinCE build by specifying :
185 # cmake [...] -DCMAKE_SYSTEM_NAME=WinCE -DCMAKE_SYSTEM_VERSION=X.XX
186 # (where X.XX is your actual WinCE version, e.g. 5.02 for Windows Mobile 6)
187 #
188 # Note that you should have a proper cross-compilation environment set up prior to running
189 # cmake, ie. the PATH, INCLUDE and LIB env vars pointing to your CE SDK/toolchain.
190 #
191 if(WINCE)
192
193 MESSAGE("Building for WinCE (${CMAKE_SYSTEM_VERSION})")
194
195 endif(WINCE)
196 #########################################################################
197
198
199 ENABLE_TESTING()
200
201 #########################################################################
202 # Disallow in-source build
203 #macro_ensure_out_of_source_build("dbus requires an out of source build. Please create a separate build directory and run 'cmake path_to_dbus [options]' there.")
204
205 # ... and warn in case of an earlier in-source build
206 #set(generatedFileInSourceDir EXISTS ${dbus_SOURCE_DIR}/config.h)
207 #if(${generatedFileInSourceDir})
208 #   message(STATUS "config.h exists in your source directory.")
209 #endif(${generatedFileInSourceDir})
210 #########################################################################
211
212 if (WIN32 OR CYGWIN)
213         set (LIBRARY_OUTPUT_PATH  ${CMAKE_BINARY_DIR}/bin)
214 else (WIN32 OR CYGWIN)
215         set (LIBRARY_OUTPUT_PATH  ${CMAKE_BINARY_DIR}/lib)
216 endif (WIN32 OR CYGWIN)
217
218 set (EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
219
220 # for including config.h and for includes like <dir/foo.h>
221 include_directories( ${CMAKE_SOURCE_DIR}/.. ${CMAKE_BINARY_DIR} ${CMAKE_INCLUDE_PATH} )
222
223 # linker search directories
224 link_directories(${DBUS_LIB_DIR} ${LIBRARY_OUTPUT_PATH} )
225 include_directories( ${CMAKE_LIBRARY_PATH}  )
226
227 set(DBUS_INCLUDES)
228
229 ENABLE_TESTING()
230
231 ########### command line options ###############
232 # TODO: take check from configure.in
233
234 #AC_ARG_ENABLE(tests, AS_HELP_STRING([--enable-tests],[enable unit test code]),enable_tests=$enableval,enable_tests=$USE_MAINTAINER_MODE)
235 option (DBUS_BUILD_TESTS "enable unit test code" ON)
236  
237 if(DBUS_BUILD_TESTS)
238     add_definitions(-DDBUS_BUILD_TESTS -DDBUS_ENABLE_EMBEDDED_TESTS)
239 endif(DBUS_BUILD_TESTS)
240
241 option (DBUS_USE_OUTPUT_DEBUG_STRING "enable win32 debug port for message output" OFF)
242 if(DBUS_USE_OUTPUT_DEBUG_STRING)
243     add_definitions(-DDBUS_USE_OUTPUT_DEBUG_STRING)
244 endif(DBUS_USE_OUTPUT_DEBUG_STRING)
245
246 if(WIN32)
247         # win32 dbus service support - this support is not complete
248         option (DBUS_SERVICE "enable dbus service installer" OFF)
249 endif(WIN32)
250
251 #AC_ARG_ENABLE(ansi, AS_HELP_STRING([--enable-ansi],[enable -ansi -pedantic gcc flags]),enable_ansi=$enableval,enable_ansi=no)
252 option (DBUS_ENABLE_ANSI "enable -ansi -pedantic gcc flags" OFF)
253 if(DBUS_ENABLE_ANSI)
254    if(NOT MSVC)
255         add_definitions(-ansi -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE -pedantic)
256    else(NOT MSVC)
257         add_definitions(-Za -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE -W4)
258    endif(NOT MSVC)
259 endif(DBUS_ENABLE_ANSI)
260
261 #AC_ARG_ENABLE(verbose-mode, AS_HELP_STRING([--enable-verbose-mode],[support verbose debug mode]),enable_verbose_mode=$enableval,enable_verbose_mode=$USE_MAINTAINER_MODE)
262 option (DBUS_ENABLE_VERBOSE_MODE "support verbose debug mode" ON)
263
264 #AC_ARG_ENABLE(checks, AS_HELP_STRING([--enable-checks],[include sanity checks on public API]),enable_checks=$enableval,enable_checks=yes)
265 option (DBUS_DISABLE_CHECKS "Disable public API sanity checking" OFF)
266
267 if(NOT MSVC)
268     #AC_ARG_ENABLE(gcov, AS_HELP_STRING([--enable-gcov],[compile with coverage profiling instrumentation (gcc only)]),enable_gcov=$enableval,enable_gcov=no)
269     option (DBUS_GCOV_ENABLED "compile with coverage profiling instrumentation (gcc only)" OFF)
270     if(DBUS_GCOV_ENABLED)
271             add_definitions(-fprofile-arcs -ftest-coverage)
272             # FIXME!!!!
273             ## remove optimization
274     #        CFLAGS=`echo "$CFLAGS" | sed -e 's/-O[0-9]*//g'`
275     endif(DBUS_GCOV_ENABLED)
276 endif(NOT MSVC)
277
278 #AC_ARG_ENABLE(abstract-sockets, AS_HELP_STRING([--enable-abstract-sockets],[use abstract socket namespace (linux only)]),enable_abstract_sockets=$enableval,enable_abstract_sockets=auto)
279 # -> moved before include(ConfigureChecks.cmake)
280
281 #AC_ARG_ENABLE(selinux, AS_HELP_STRING([--enable-selinux],[build with SELinux support]),enable_selinux=$enableval,enable_selinux=auto)
282 #selinux missing
283
284 #AC_ARG_ENABLE(dnotify, AS_HELP_STRING([--enable-dnotify],[build with dnotify support (linux only)]),enable_dnotify=$enableval,enable_dnotify=auto)
285 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
286     option (DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX "build with dnotify support (linux only)" ON) # add a check !
287 endif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
288
289 #AC_ARG_ENABLE(kqueue, AS_HELP_STRING([--enable-kqueue],[build with kqueue support (FreeBSD only)]),enable_kqueue=$enableval,enable_kqueue=auto)
290 #missing
291
292 #AC_ARG_ENABLE(console-owner-file, AS_HELP_STRING([--enable-console-owner-file],[enable console owner file]),enable_console_owner_file=$enableval,enable_console_owner_file=auto)
293 STRING(TOUPPER ${CMAKE_SYSTEM_NAME} sysname)
294 if("${sysname}" MATCHES ".*SOLARIS.*")
295     option (HAVE_CONSOLE_OWNER_FILE "enable console owner file (solaris only)" ON)
296     if(HAVE_CONSOLE_OWNER_FILE)
297         set (DBUS_CONSOLE_OWNER_FILE "/dev/console" CACHE STRING "Directory to check for console ownerhip")
298     endif(HAVE_CONSOLE_OWNER_FILE)
299 endif("${sysname}" MATCHES ".*SOLARIS.*")
300
301 #AC_ARG_WITH(xml, AS_HELP_STRING([--with-xml=[libxml/expat]],[XML library to use]))
302 if(NOT LIBXML2_FOUND AND NOT EXPAT_FOUND)
303     message(FATAL "Neither expat nor libxml2 found!")
304 endif(NOT LIBXML2_FOUND AND NOT EXPAT_FOUND)
305
306 SET(XML_LIB "Expat")
307 SET(XML_LIBRARY     ${EXPAT_LIBRARIES})
308 SET(XML_INCLUDE_DIR ${EXPAT_INCLUDE_DIR})
309
310 #AC_ARG_WITH(init-scripts, AS_HELP_STRING([--with-init-scripts=[redhat]],[Style of init scripts to install]))
311 #AC_ARG_WITH(session-socket-dir, AS_HELP_STRING([--with-session-socket-dir=[dirname]],[Where to put sockets for the per-login-session message bus]))
312 #AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
313 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
314 #AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
315 #AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
316 #AC_ARG_WITH(console-owner-file, AS_HELP_STRING([--with-console-owner-file=[filename]],[file whose owner determines current console owner]))
317 #AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
318 #AC_ARG_WITH(dbus_daemondir, AS_HELP_STRING([--with-dbus-daemondir=[dirname]],[Directory for installing the DBUS daemon]))
319 # all missing or hardcoded for now
320
321 # 'hidden' ones
322 set(atomic_int OFF)
323 set(atomic_int486 OFF)
324 if(CMAKE_COMPILER_IS_GNUCC AND NOT DBUS_ENABLE_ANSI)
325     FIND_PROGRAM(UNAME_EXECUTABLE
326                     NAMES uname
327                     PATHS /bin /usr/bin /usr/local/bin c:/Programme/MSys/bin d:/Programme/MSys/bin)
328
329     if(UNAME_EXECUTABLE)
330         EXECUTE_PROCESS(COMMAND ${UNAME_EXECUTABLE} "-m"
331                         OUTPUT_VARIABLE UNAME_OUTPUT)
332
333         if("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
334             set(atomic_int ON)
335         else("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
336             if("UNAME_OUTPUT" MATCHES "^.*i?86.*$")
337                 set(atomic_int ON)
338                 set(atomic_int_486 ON)
339             endif("UNAME_OUTPUT" MATCHES "^.*i?86.*$")
340         endif("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
341     endif(UNAME_EXECUTABLE)
342 endif(CMAKE_COMPILER_IS_GNUCC AND NOT DBUS_ENABLE_ANSI)
343
344 set (DBUS_HAVE_ATOMIC_INT ${atomic_int} CACHE STRING "Some atomic integer implementation present")
345 set (DBUS_USE_ATOMIC_INT_486 ${atomic_int_486} CACHE STRING "Use atomic integer implementation for 486")
346
347 if(X11_FOUND)
348   option (DBUS_BUILD_X11 "Build with X11 autolaunch support " ON)
349 endif(X11_FOUND)
350
351 # test binary names
352 if (WIN32)
353         # Automake calls this EXEEXT, and CMake doesn't have a standard name
354         # for it; follow Automake's naming convention so we can share .in files
355         set (EXEEXT ".exe")
356 endif(WIN32)
357
358 if (MSVC_IDE)
359     if(CMAKE_BUILD_TYPE MATCHES Debug)
360                 set(IDE_BIN /Debug )
361                 message(STATUS)
362                 message(STATUS "Visual Studio: test programs will only work with 'Debug' configuration!")
363                 message(STATUS "To run tests with 'Release' configuration use -DCMAKE_BUILD_TYPE=Release")
364                 message(STATUS "Add '..\\..\\test\\data' to the command line option of the test programs")
365                 message(STATUS)
366     else(CMAKE_BUILD_TYPE MATCHES Debug)
367                 set(IDE_BIN /Release)
368                 message(STATUS)
369                 message(STATUS "Visual Studio: test programs will only work with 'Release' configuration!")
370                 message(STATUS "To run tests with 'Debug' configuration use -DCMAKE_BUILD_TYPE=Debug")
371                 message(STATUS "Add '..\\..\\test\\data' to the command line option of the test programs")
372                 message(STATUS)
373     endif(CMAKE_BUILD_TYPE MATCHES Debug)
374         set (TEST_PATH_FORCE FORCE)
375         FILE(REMOVE ${CMAKE_BINARY_DIR}/data/dbus-1/services)
376 endif (MSVC_IDE)
377
378 #### Find socket directories
379  if (NOT $ENV{TMPDIR} STREQUAL "")
380      set (DBUS_SESSION_SOCKET_DIR $ENV{TMPDIR})
381  else (NOT $ENV{TMPDIR} STREQUAL "")
382      if (NOT $ENV{TEMP} STREQUAL "")
383          set (DBUS_SESSION_SOCKET_DIR $ENV{TEMP})
384      else (NOT $ENV{TEMP} STREQUAL "")
385          if (NOT $ENV{TMP} STREQUAL "")
386              set (DBUS_SESSION_SOCKET_DIR $ENV{TMP})
387          else (NOT $ENV{TMP} STREQUAL "")
388          if (WIN32)
389              #Should never happen, both TMP and TEMP seem always set on Windows
390              message(FATAL "Could not determine a usable temporary directory")
391          else(WIN32)
392             set (DBUS_SESSION_SOCKET_DIR /tmp)
393          endif(WIN32)
394          endif (NOT $ENV{TMP} STREQUAL "")
395      endif (NOT $ENV{TEMP} STREQUAL "")
396  endif (NOT $ENV{TMPDIR} STREQUAL "")
397
398 #AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
399
400 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
401
402 #if ! test -z "$with_system_pid_file"; then
403 #   DBUS_SYSTEM_PID_FILE=$with_system_pid_file
404 #elif test x$operating_system = xredhat ; then
405 #   DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/messagebus.pid
406 #else
407 #   DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/dbus/pid
408 #fi
409 # TODO: fix redhet
410 if (WIN32)
411   # bus-test expects a non empty string
412         set (DBUS_SYSTEM_PID_FILE "/dbus-pid")
413 else (WIN32)
414         set (DBUS_SYSTEM_PID_FILE ${EXPANDED_LOCALSTATEDIR}/run/dbus/pid)
415 endif (WIN32)
416
417 #AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
418
419 #AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
420
421 if (WIN32)
422         set (DBUS_CONSOLE_AUTH_DIR "")
423 else (WIN32)
424         set (DBUS_CONSOLE_AUTH_DIR "/var/run/console/")
425 endif (WIN32)
426
427 #AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
428
429 set (DBUS_USER )
430
431 # In Autotools this has a different default on QNX, but there seems little
432 # point in replicating that here; if you're on an unusual Unix, use Autotools.
433 set (DEFAULT_MESSAGE_UNIX_FDS 1024)
434
435 # This won't work on Windows. It's not meant to - the system bus is
436 # meaningless on Windows anyway.
437 #
438 # This has to be suitable for hard-coding in client libraries as well as
439 # in the dbus-daemon's configuration, so it has to be valid to listen on
440 # and also to connect to. If this ever changes, it'll need to be split into
441 # two variables, one for the listening address and one for the connecting
442 # address.
443 set (DBUS_SYSTEM_BUS_DEFAULT_ADDRESS "unix:path=${EXPANDED_LOCALSTATEDIR}/run/dbus/system_bus_socket" CACHE STRING "system bus default address")
444
445 if (WIN32)
446   set (DBUS_SESSION_BUS_LISTEN_ADDRESS "autolaunch:" CACHE STRING "session bus default listening address")
447   set (DBUS_SESSION_BUS_CONNECT_ADDRESS "autolaunch:" CACHE STRING "session bus fallback address for clients")
448
449   set (DBUS_SYSTEM_CONFIG_FILE "etc/dbus-1/system.conf")
450   set (DBUS_SESSION_CONFIG_FILE "etc/dbus-1/session.conf")
451   # bus-test expects a non empty string
452   set (DBUS_USER "Administrator")
453 else (WIN32)
454   set (DBUS_SESSION_BUS_LISTEN_ADDRESS "unix:tmpdir=${DBUS_SESSION_SOCKET_DIR}" CACHE STRING "session bus default listening address")
455   set (DBUS_SESSION_BUS_CONNECT_ADDRESS "autolaunch:" CACHE STRING "session bus fallback address for clients")
456   set (sysconfdir "")
457   set (configdir ${sysconfdir}/dbus-1 )
458   set (DBUS_SYSTEM_CONFIG_FILE  ${configdir}/system.conf)
459   set (DBUS_SESSION_CONFIG_FILE ${configdir}/session.conf)
460   set (DBUS_USER "root")
461 endif (WIN32)
462
463 set (DBUS_DAEMON_NAME "dbus-daemon" CACHE STRING "The name of the dbus daemon executable")
464
465 ########### create config.h ###############
466
467 #include(ConfigureChecks.cmake)
468
469 # better use flags for gcc
470 if (MINGW)
471         set (HAVE_GNUC_VARARGS 1)
472 endif(MINGW)
473
474 # compiler definitions
475 add_definitions(-DHAVE_CONFIG_H=1)
476 add_definitions(${DBUS_BUS_CFLAGS})
477
478
479 if (DBUS_BUILD_TESTS)
480     # set variables used for the .in files (substituted by configure_file) in test/data:
481     set(DBUS_TEST_EXEC ${EXECUTABLE_OUTPUT_PATH}${IDE_BIN})
482     set(DBUS_TEST_DATA ${CMAKE_BINARY_DIR}/test/data)
483     set(TEST_SOCKET_DIR ${DBUS_SESSION_SOCKET_DIR} )
484     set(TEST_LAUNCH_HELPER_BINARY ${EXECUTABLE_OUTPUT_PATH}/dbus-daemon-launch-helper-test)
485     if (UNIX)
486         set (TEST_LISTEN "unix:tmpdir=${TEST_SOCKET_DIR}")
487     endif (UNIX)
488     if (WIN32)
489         set (TEST_LISTEN "tcp:host=localhost")
490     endif (WIN32)
491 endif  (DBUS_BUILD_TESTS)
492
493 set(DBUS_LIBRARIES dbus-1)
494 set(DBUS_INTERNAL_LIBRARIES dbus-internal)
495
496 # settings for building and using static internal lib
497 # important note: DBUS_INTERNAL_xxxxx_DEFINITIONS must *not* be set when building dbus-1 library
498 set (DBUS_INTERNAL_ADD_LIBRARY_OPTIONS STATIC)
499 set (DBUS_INTERNAL_LIBRARY_DEFINITIONS "-DDBUS_STATIC_BUILD")
500 set (DBUS_INTERNAL_CLIENT_DEFINITIONS "-DDBUS_STATIC_BUILD")
501
502 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h )
503
504 if (WIN32)
505 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/dbus-env.bat.cmake ${CMAKE_BINARY_DIR}/bin/dbus-env.bat )
506 install_files(/bin FILES ${CMAKE_BINARY_DIR}/bin/dbus-env.bat)
507 endif()
508
509 add_definitions(-DHAVE_CONFIG_H=1)
510
511 ########### subdirs ###############
512
513 add_subdirectory( dbus )
514 add_subdirectory( bus )
515 if (DBUS_BUILD_TESTS)
516         add_subdirectory( test )
517 endif (DBUS_BUILD_TESTS)
518 add_subdirectory( tools )
519 add_subdirectory( doc )
520
521
522 OPTION(DBUS_INSTALL_SYSTEM_LIBS "install required system libraries" OFF)
523 MESSAGE(" ")
524 MESSAGE("set -DDBUS_INSTALL_SYSTEM_LIBS=1 to install runtime libraries too")
525 MESSAGE("set DBUSDIR (environment or cmake option) to overwrite the default install directory ")
526 MESSAGE(" ")
527 MESSAGE(" ")
528 GET_FILENAME_COMPONENT(C_COMPILER ${CMAKE_C_COMPILER} NAME)
529 GET_FILENAME_COMPONENT(CXX_COMPILER ${CMAKE_CXX_COMPILER} NAME)
530
531 message("                  D-BUS ${DBUS_VERSION}                               ")
532 message("                  ===========                                         ")
533 message("                                                                      ")
534 message("        install prefix:           ${prefix}                           ")
535 message("        install exec_prefix:      ${exec_prefix}                      ")
536 message("        install libdir:           ${EXPANDED_LIBDIR}                  ")
537 message("        install bindir:           ${EXPANDED_BINDIR}                  ")
538 message("        install sysconfdir:       ${EXPANDED_SYSCONFDIR}              ")
539 #message("        install localstatedir:    ${EXPANDED_LOCALSTATEDIR}           ")
540 message("        install datadir:          ${EXPANDED_DATADIR}                 ")
541 message("        source code location:     ${DBUS_SOURCE_DIR}                  ")
542 message("        build dir:                ${CMAKE_BINARY_DIR}                 ")
543 message("        c compiler:               ${C_COMPILER}                       ")
544 message("        cflags:                   ${CMAKE_C_FLAGS}                    ")
545 message("        cflags debug:             ${CMAKE_C_FLAGS_DEBUG}              ")
546 message("        cflags release:           ${CMAKE_C_FLAGS_RELEASE}            ")
547 message("        cxx compiler:             ${CXX_COMPILER}                     ")
548 message("        cxxflags:                 ${CMAKE_CXX_FLAGS}                  ")
549 message("        cxxflags debug:           ${CMAKE_CXX_FLAGS_DEBUG}            ")
550 message("        cxxflags release:         ${CMAKE_CXX_FLAGS_RELEASE}          ")
551 message("        64-bit int:               ${DBUS_INT64_TYPE}                  ")
552 message("        32-bit int:               ${DBUS_INT32_TYPE}                  ")
553 message("        16-bit int:               ${DBUS_INT16_TYPE}                  ")
554 message("        Doxygen:                  ${DOXYGEN}                          ")
555 message("        Docbook Generator:        ${DOCBOOK_GENERATOR_NAME}           ")
556
557
558 #message("        Maintainer mode:          ${USE_MAINTAINER_MODE}              ")
559 message("        gcc coverage profiling:   ${DBUS_GCOV_ENABLED}                ")
560 message("        Building unit tests:      ${DBUS_BUILD_TESTS}                 ")
561 message("        Building verbose mode:    ${DBUS_ENABLE_VERBOSE_MODE}         ")
562 message("        Building w/o assertions:  ${DBUS_DISABLE_ASSERTS}             ")
563 message("        Building w/o checks:      ${DBUS_DISABLE_CHECKS}              ")
564 message("        Building bus stats API:   ${DBUS_ENABLE_STATS}                ")
565 message("        installing system libs:   ${DBUS_INSTALL_SYSTEM_LIBS}         ")
566 #message("        Building SELinux support: ${have_selinux}                     ")
567 #message("        Building dnotify support: ${have_dnotify}                     ")
568 message("        Building Doxygen docs:    ${DBUS_ENABLE_DOXYGEN_DOCS}         ")
569 message("        Building XML docs:        ${DBUS_ENABLE_XML_DOCS}             ")
570 #message("        Gettext libs (empty OK):  ${INTLLIBS}                         ")
571 message("        Using XML parser:         ${XML_LIB}                          ")
572 message("        Daemon executable name:   ${DBUS_DAEMON_NAME}")
573 if (WIN32)
574 message("        System bus address:       ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}  ")
575 message("        Session bus listens on:   ${DBUS_SESSION_BUS_LISTEN_ADDRESS} ")
576 message("        Session clients connect to: ${DBUS_SESSION_BUS_CONNECT_ADDRESS} ")
577 else (WIN32)
578 #message("        Init scripts style:       ${with_init_scripts}                ")
579 #message("        Abstract socket names:    ${have_abstract_sockets}            ")
580 message("        System bus socket:        ${DBUS_SYSTEM_SOCKET}               ")
581 message("        System bus address:       ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}  ")
582 message("        System bus PID file:      ${DBUS_SYSTEM_PID_FILE}             ")
583 message("        Session bus socket dir:   ${DBUS_SESSION_SOCKET_DIR}          ")
584 message("        Console auth dir:         ${DBUS_CONSOLE_AUTH_DIR}            ")
585 message("        System bus user:          ${DBUS_USER}                        ")
586 message("        'make check' socket dir:  ${TEST_SOCKET_DIR}                  ")
587 endif (WIN32)
588 message("        Test listen address:      ${TEST_LISTEN}                      ")
589 if (MSVC)
590 message("        build timestamp:          ${DBUS_BUILD_TIMESTAMP}             ")
591 endif (MSVC)
592
593 MESSAGE(" ")
594 if (DBUS_BUILD_TESTS)
595     message("NOTE: building with unit tests increases the size of the installed library and renders it insecure.")
596 endif(DBUS_BUILD_TESTS)
597
598 if (DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERTS)
599     message("NOTE: building with unit tests but without assertions means tests may not properly report failures (this configuration is only useful when doing something like profiling the tests)")
600 endif(DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERTS)
601
602 if (DBUS_GCOV_ENABLED)
603     message("NOTE: building with coverage profiling is definitely for developers only.")
604 endif(DBUS_GCOV_ENABLED)
605
606 if (DBUS_ENABLE_VERBOSE_MODE)
607     message("NOTE: building with verbose mode increases library size, may slightly increase security risk, and decreases performance.")
608 endif(DBUS_ENABLE_VERBOSE_MODE)
609
610 if(NOT DBUS_DISABLE_ASSERTS)
611     message("NOTE: building with assertions increases library size and decreases performance.")
612 endif(NOT DBUS_DISABLE_ASSERTS)
613
614 if (DBUS_DISABLE_CHECKS)
615     message("NOTE: building without checks for arguments passed to public API makes it harder to debug apps using D-BUS, but will slightly decrease D-BUS library size and _very_ slightly improve performance.")
616 endif(DBUS_DISABLE_CHECKS)
617 MESSAGE(" ")
618
619 INCLUDE(modules/CPackInstallConfig.cmake)
620
621 add_custom_target(help-options
622     cmake -LH 
623     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
624 )