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