Merge branch 'dbus-1.6'
[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 (CYGWIN)
74    set (WIN32)
75 endif (CYGWIN)
76
77 # search for required packages
78 if (WIN32)
79     # include local header first to avoid using old installed header
80     set (CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH} ${CMAKE_SOURCE_DIR}/..)
81         find_package(LibIconv)
82     include(Win32Macros)
83     addExplorerWrapper(${CMAKE_PROJECT_NAME})
84 endif (WIN32)
85
86 option (DBUS_USE_EXPAT "Use expat (== ON) or libxml2 (==OFF)" ON)
87
88 if(NOT WIN32)
89         option (DBUS_ENABLE_ABSTRACT_SOCKETS "enable support for abstract sockets" ON)
90         set (CMAKE_THREAD_PREFER_PTHREAD ON)
91         include (FindThreads)
92 endif(NOT WIN32)
93
94 #AC_ARG_ENABLE(asserts, AS_HELP_STRING([--enable-asserts],[include assertion checks]),enable_asserts=$enableval,enable_asserts=$USE_MAINTAINER_MODE)
95 option (DBUS_DISABLE_ASSERTS "Disable assertion checking" OFF)
96
97 option (DBUS_ENABLE_STATS "enable bus daemon usage statistics" OFF)
98
99 option (DBUS_ENABLE_STATS "enable bus daemon usage statistics" OFF)
100
101 if (DBUS_USE_EXPAT)
102     find_package(EXPAT)
103 else ()
104     find_package(LibXml2)
105 endif ()
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 if(DBUS_USE_EXPAT)
307     SET(XML_LIB "Expat")
308     SET(XML_LIBRARY     ${EXPAT_LIBRARIES})
309     SET(XML_INCLUDE_DIR ${EXPAT_INCLUDE_DIR})
310 else(DBUS_USE_EXPAT)
311     SET(XML_LIB "LibXML2")
312     SET(XML_LIBRARY     ${LIBXML2_LIBRARIES})
313     SET(XML_INCLUDE_DIR ${LIBXML2_INCLUDE_DIR})
314 endif(DBUS_USE_EXPAT)
315
316
317 #AC_ARG_WITH(init-scripts, AS_HELP_STRING([--with-init-scripts=[redhat]],[Style of init scripts to install]))
318 #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]))
319 #AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
320 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
321 #AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
322 #AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
323 #AC_ARG_WITH(console-owner-file, AS_HELP_STRING([--with-console-owner-file=[filename]],[file whose owner determines current console owner]))
324 #AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
325 #AC_ARG_WITH(dbus_daemondir, AS_HELP_STRING([--with-dbus-daemondir=[dirname]],[Directory for installing the DBUS daemon]))
326 # all missing or hardcoded for now
327
328 # 'hidden' ones
329 set(atomic_int OFF)
330 set(atomic_int486 OFF)
331 if(CMAKE_COMPILER_IS_GNUCC AND NOT DBUS_ENABLE_ANSI)
332     FIND_PROGRAM(UNAME_EXECUTABLE
333                     NAMES uname
334                     PATHS /bin /usr/bin /usr/local/bin c:/Programme/MSys/bin d:/Programme/MSys/bin)
335
336     if(UNAME_EXECUTABLE)
337         EXECUTE_PROCESS(COMMAND ${UNAME_EXECUTABLE} "-m"
338                         OUTPUT_VARIABLE UNAME_OUTPUT)
339
340         if("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
341             set(atomic_int ON)
342         else("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
343             if("UNAME_OUTPUT" MATCHES "^.*i?86.*$")
344                 set(atomic_int ON)
345                 set(atomic_int_486 ON)
346             endif("UNAME_OUTPUT" MATCHES "^.*i?86.*$")
347         endif("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
348     endif(UNAME_EXECUTABLE)
349 endif(CMAKE_COMPILER_IS_GNUCC AND NOT DBUS_ENABLE_ANSI)
350
351 set (DBUS_HAVE_ATOMIC_INT ${atomic_int} CACHE STRING "Some atomic integer implementation present")
352 set (DBUS_USE_ATOMIC_INT_486 ${atomic_int_486} CACHE STRING "Use atomic integer implementation for 486")
353
354 if(X11_FOUND)
355   option (DBUS_BUILD_X11 "Build with X11 autolaunch support " ON)
356 endif(X11_FOUND)
357
358 # test binary names
359 if (WIN32)
360         # Automake calls this EXEEXT, and CMake doesn't have a standard name
361         # for it; follow Automake's naming convention so we can share .in files
362         set (EXEEXT ".exe")
363 endif(WIN32)
364
365 if (MSVC_IDE)
366     if(CMAKE_BUILD_TYPE MATCHES Debug)
367                 set(IDE_BIN /Debug )
368                 message(STATUS)
369                 message(STATUS "Visual Studio: test programs will only work with 'Debug' configuration!")
370                 message(STATUS "To run tests with 'Release' configuration use -DCMAKE_BUILD_TYPE=Release")
371                 message(STATUS "Add '..\\..\\test\\data' to the command line option of the test programs")
372                 message(STATUS)
373     else(CMAKE_BUILD_TYPE MATCHES Debug)
374                 set(IDE_BIN /Release)
375                 message(STATUS)
376                 message(STATUS "Visual Studio: test programs will only work with 'Release' configuration!")
377                 message(STATUS "To run tests with 'Debug' configuration use -DCMAKE_BUILD_TYPE=Debug")
378                 message(STATUS "Add '..\\..\\test\\data' to the command line option of the test programs")
379                 message(STATUS)
380     endif(CMAKE_BUILD_TYPE MATCHES Debug)
381         set (TEST_PATH_FORCE FORCE)
382         FILE(REMOVE ${CMAKE_BINARY_DIR}/data/dbus-1/services)
383 endif (MSVC_IDE)
384
385 #### Find socket directories
386  if (NOT $ENV{TMPDIR} STREQUAL "")
387      set (DBUS_SESSION_SOCKET_DIR $ENV{TMPDIR})
388  else (NOT $ENV{TMPDIR} STREQUAL "")
389      if (NOT $ENV{TEMP} STREQUAL "")
390          set (DBUS_SESSION_SOCKET_DIR $ENV{TEMP})
391      else (NOT $ENV{TEMP} STREQUAL "")
392          if (NOT $ENV{TMP} STREQUAL "")
393              set (DBUS_SESSION_SOCKET_DIR $ENV{TMP})
394          else (NOT $ENV{TMP} STREQUAL "")
395          if (WIN32)
396              #Should never happen, both TMP and TEMP seem always set on Windows
397              message(FATAL "Could not determine a usable temporary directory")
398          else(WIN32)
399             set (DBUS_SESSION_SOCKET_DIR /tmp)
400          endif(WIN32)
401          endif (NOT $ENV{TMP} STREQUAL "")
402      endif (NOT $ENV{TEMP} STREQUAL "")
403  endif (NOT $ENV{TMPDIR} STREQUAL "")
404
405 #AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
406
407 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
408
409 #if ! test -z "$with_system_pid_file"; then
410 #   DBUS_SYSTEM_PID_FILE=$with_system_pid_file
411 #elif test x$operating_system = xredhat ; then
412 #   DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/messagebus.pid
413 #else
414 #   DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/dbus/pid
415 #fi
416 # TODO: fix redhet
417 if (WIN32)
418   # bus-test expects a non empty string
419         set (DBUS_SYSTEM_PID_FILE "/dbus-pid")
420 else (WIN32)
421         set (DBUS_SYSTEM_PID_FILE ${EXPANDED_LOCALSTATEDIR}/run/dbus/pid)
422 endif (WIN32)
423
424 #AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
425
426 #AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
427
428 if (WIN32)
429         set (DBUS_CONSOLE_AUTH_DIR "")
430 else (WIN32)
431         set (DBUS_CONSOLE_AUTH_DIR "/var/run/console/")
432 endif (WIN32)
433
434 #AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
435
436 set (DBUS_USER )
437
438 # In Autotools this has a different default on QNX, but there seems little
439 # point in replicating that here; if you're on an unusual Unix, use Autotools.
440 set (DEFAULT_MESSAGE_UNIX_FDS 1024)
441
442 # This won't work on Windows. It's not meant to - the system bus is
443 # meaningless on Windows anyway.
444 #
445 # This has to be suitable for hard-coding in client libraries as well as
446 # in the dbus-daemon's configuration, so it has to be valid to listen on
447 # and also to connect to. If this ever changes, it'll need to be split into
448 # two variables, one for the listening address and one for the connecting
449 # address.
450 set (DBUS_SYSTEM_BUS_DEFAULT_ADDRESS "unix:path=${EXPANDED_LOCALSTATEDIR}/run/dbus/system_bus_socket" CACHE STRING "system bus default address")
451
452 if (WIN32)
453   set (DBUS_SESSION_BUS_LISTEN_ADDRESS "autolaunch:" CACHE STRING "session bus default listening address")
454   set (DBUS_SESSION_BUS_CONNECT_ADDRESS "autolaunch:" CACHE STRING "session bus fallback address for clients")
455
456   set (DBUS_SYSTEM_CONFIG_FILE "etc/dbus-1/system.conf")
457   set (DBUS_SESSION_CONFIG_FILE "etc/dbus-1/session.conf")
458   # bus-test expects a non empty string
459   set (DBUS_USER "Administrator")
460 else (WIN32)
461   set (DBUS_SESSION_BUS_LISTEN_ADDRESS "unix:tmpdir=${DBUS_SESSION_SOCKET_DIR}" CACHE STRING "session bus default listening address")
462   set (DBUS_SESSION_BUS_CONNECT_ADDRESS "autolaunch:" CACHE STRING "session bus fallback address for clients")
463   set (sysconfdir "")
464   set (configdir ${sysconfdir}/dbus-1 )
465   set (DBUS_SYSTEM_CONFIG_FILE  ${configdir}/system.conf)
466   set (DBUS_SESSION_CONFIG_FILE ${configdir}/session.conf)
467   set (DBUS_USER "root")
468 endif (WIN32)
469
470 set (DBUS_DAEMON_NAME "dbus-daemon" CACHE STRING "The name of the dbus daemon executable")
471
472 ########### create config.h ###############
473
474 #include(ConfigureChecks.cmake)
475
476 # better use flags for gcc
477 if (MINGW)
478         set (HAVE_GNUC_VARARGS 1)
479 endif(MINGW)
480
481 # compiler definitions
482 add_definitions(-DHAVE_CONFIG_H=1)
483 add_definitions(${DBUS_BUS_CFLAGS})
484
485
486 if (DBUS_BUILD_TESTS)
487     # set variables used for the .in files (substituted by configure_file) in test/data:
488     set(DBUS_TEST_EXEC ${EXECUTABLE_OUTPUT_PATH}${IDE_BIN})
489     set(DBUS_TEST_DATA ${CMAKE_BINARY_DIR}/test/data)
490     set(TEST_SOCKET_DIR ${DBUS_SESSION_SOCKET_DIR} )
491     set(TEST_LAUNCH_HELPER_BINARY ${EXECUTABLE_OUTPUT_PATH}/dbus-daemon-launch-helper-test)
492     if (UNIX)
493         set (TEST_LISTEN "unix:tmpdir=${TEST_SOCKET_DIR}")
494     endif (UNIX)
495     if (WIN32)
496         set (TEST_LISTEN "tcp:host=localhost")
497     endif (WIN32)
498 endif  (DBUS_BUILD_TESTS)
499
500 set(DBUS_LIBRARIES dbus-1)
501 set(DBUS_INTERNAL_LIBRARIES dbus-internal)
502
503 # settings for building and using static internal lib
504 # important note: DBUS_INTERNAL_xxxxx_DEFINITIONS must *not* be set when building dbus-1 library
505 set (DBUS_INTERNAL_ADD_LIBRARY_OPTIONS STATIC)
506 set (DBUS_INTERNAL_LIBRARY_DEFINITIONS "-DDBUS_STATIC_BUILD")
507 set (DBUS_INTERNAL_CLIENT_DEFINITIONS "-DDBUS_STATIC_BUILD")
508
509 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h )
510
511 if (WIN32)
512 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/dbus-env.bat.cmake ${CMAKE_BINARY_DIR}/bin/dbus-env.bat )
513 install_files(/bin FILES ${CMAKE_BINARY_DIR}/bin/dbus-env.bat)
514 endif()
515
516 add_definitions(-DHAVE_CONFIG_H=1)
517
518 ########### subdirs ###############
519
520 add_subdirectory( dbus )
521 add_subdirectory( bus )
522 if (DBUS_BUILD_TESTS)
523         add_subdirectory( test )
524 endif (DBUS_BUILD_TESTS)
525 add_subdirectory( tools )
526 add_subdirectory( doc )
527
528
529 OPTION(DBUS_INSTALL_SYSTEM_LIBS "install required system libraries" OFF)
530 MESSAGE(" ")
531 MESSAGE("set -DDBUS_INSTALL_SYSTEM_LIBS=1 to install runtime libraries too")
532 MESSAGE("set DBUSDIR (environment or cmake option) to overwrite the default install directory ")
533 MESSAGE(" ")
534 MESSAGE(" ")
535 GET_FILENAME_COMPONENT(C_COMPILER ${CMAKE_C_COMPILER} NAME)
536 GET_FILENAME_COMPONENT(CXX_COMPILER ${CMAKE_CXX_COMPILER} NAME)
537
538 message("                  D-BUS ${DBUS_VERSION}                               ")
539 message("                  ===========                                         ")
540 message("                                                                      ")
541 message("        install prefix:           ${prefix}                           ")
542 message("        install exec_prefix:      ${exec_prefix}                      ")
543 message("        install libdir:           ${EXPANDED_LIBDIR}                  ")
544 message("        install bindir:           ${EXPANDED_BINDIR}                  ")
545 message("        install sysconfdir:       ${EXPANDED_SYSCONFDIR}              ")
546 #message("        install localstatedir:    ${EXPANDED_LOCALSTATEDIR}           ")
547 message("        install datadir:          ${EXPANDED_DATADIR}                 ")
548 message("        source code location:     ${DBUS_SOURCE_DIR}                  ")
549 message("        build dir:                ${CMAKE_BINARY_DIR}                 ")
550 message("        c compiler:               ${C_COMPILER}                       ")
551 message("        cflags:                   ${CMAKE_C_FLAGS}                    ")
552 message("        cflags debug:             ${CMAKE_C_FLAGS_DEBUG}              ")
553 message("        cflags release:           ${CMAKE_C_FLAGS_RELEASE}            ")
554 message("        cxx compiler:             ${CXX_COMPILER}                     ")
555 message("        cxxflags:                 ${CMAKE_CXX_FLAGS}                  ")
556 message("        cxxflags debug:           ${CMAKE_CXX_FLAGS_DEBUG}            ")
557 message("        cxxflags release:         ${CMAKE_CXX_FLAGS_RELEASE}          ")
558 message("        64-bit int:               ${DBUS_INT64_TYPE}                  ")
559 message("        32-bit int:               ${DBUS_INT32_TYPE}                  ")
560 message("        16-bit int:               ${DBUS_INT16_TYPE}                  ")
561 message("        Doxygen:                  ${DOXYGEN}                          ")
562 message("        Docbook Generator:        ${DOCBOOK_GENERATOR_NAME}           ")
563
564
565 #message("        Maintainer mode:          ${USE_MAINTAINER_MODE}              ")
566 message("        gcc coverage profiling:   ${DBUS_GCOV_ENABLED}                ")
567 message("        Building unit tests:      ${DBUS_BUILD_TESTS}                 ")
568 message("        Building verbose mode:    ${DBUS_ENABLE_VERBOSE_MODE}         ")
569 message("        Building w/o assertions:  ${DBUS_DISABLE_ASSERTS}             ")
570 message("        Building w/o checks:      ${DBUS_DISABLE_CHECKS}              ")
571 message("        Building bus stats API:   ${DBUS_ENABLE_STATS}                ")
572 message("        installing system libs:   ${DBUS_INSTALL_SYSTEM_LIBS}         ")
573 #message("        Building SELinux support: ${have_selinux}                     ")
574 #message("        Building dnotify support: ${have_dnotify}                     ")
575 message("        Building Doxygen docs:    ${DBUS_ENABLE_DOXYGEN_DOCS}         ")
576 message("        Building XML docs:        ${DBUS_ENABLE_XML_DOCS}             ")
577 #message("        Gettext libs (empty OK):  ${INTLLIBS}                         ")
578 message("        Using XML parser:         ${XML_LIB}                          ")
579 message("        Daemon executable name:   ${DBUS_DAEMON_NAME}")
580 if (WIN32)
581 message("        System bus address:       ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}  ")
582 message("        Session bus listens on:   ${DBUS_SESSION_BUS_LISTEN_ADDRESS} ")
583 message("        Session clients connect to: ${DBUS_SESSION_BUS_CONNECT_ADDRESS} ")
584 else (WIN32)
585 #message("        Init scripts style:       ${with_init_scripts}                ")
586 #message("        Abstract socket names:    ${have_abstract_sockets}            ")
587 message("        System bus socket:        ${DBUS_SYSTEM_SOCKET}               ")
588 message("        System bus address:       ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}  ")
589 message("        System bus PID file:      ${DBUS_SYSTEM_PID_FILE}             ")
590 message("        Session bus socket dir:   ${DBUS_SESSION_SOCKET_DIR}          ")
591 message("        Console auth dir:         ${DBUS_CONSOLE_AUTH_DIR}            ")
592 message("        System bus user:          ${DBUS_USER}                        ")
593 message("        'make check' socket dir:  ${TEST_SOCKET_DIR}                  ")
594 endif (WIN32)
595 message("        Test listen address:      ${TEST_LISTEN}                      ")
596 if (MSVC)
597 message("        build timestamp:          ${DBUS_BUILD_TIMESTAMP}             ")
598 endif (MSVC)
599
600 MESSAGE(" ")
601 if (DBUS_BUILD_TESTS)
602     message("NOTE: building with unit tests increases the size of the installed library and renders it insecure.")
603 endif(DBUS_BUILD_TESTS)
604
605 if (DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERTS)
606     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)")
607 endif(DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERTS)
608
609 if (DBUS_GCOV_ENABLED)
610     message("NOTE: building with coverage profiling is definitely for developers only.")
611 endif(DBUS_GCOV_ENABLED)
612
613 if (DBUS_ENABLE_VERBOSE_MODE)
614     message("NOTE: building with verbose mode increases library size, may slightly increase security risk, and decreases performance.")
615 endif(DBUS_ENABLE_VERBOSE_MODE)
616
617 if(NOT DBUS_DISABLE_ASSERTS)
618     message("NOTE: building with assertions increases library size and decreases performance.")
619 endif(NOT DBUS_DISABLE_ASSERTS)
620
621 if (DBUS_DISABLE_CHECKS)
622     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.")
623 endif(DBUS_DISABLE_CHECKS)
624 MESSAGE(" ")
625
626 INCLUDE(modules/CPackInstallConfig.cmake)
627
628 add_custom_target(help-options
629     cmake -LH 
630     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
631 )