* cmake\doc\CMakeLists.txt: added prelimary xml doc support, needs cmake find script.
[platform/upstream/dbus.git] / cmake / CMakeLists.txt
1 set (PACKAGE dbus)
2 set (VERSION_MAJOR "1")
3 set (VERSION_MINOR "0")
4 set (VERSION_PATCH "0")
5 set (VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH} )
6 project(${PACKAGE})
7
8 # we need to be up to date
9 CMAKE_MINIMUM_REQUIRED(VERSION 2.4.4 FATAL_ERROR)
10
11 # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
12 set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/modules")
13
14
15 #enable building of shared library
16 SET(BUILD_SHARED_LIBS ON)
17
18 # search packages used by KDE
19 if (WIN32)
20         find_package(GNUWIN32)
21         find_package(LibIconv)
22 endif (WIN32)
23 find_package(LibXml2)
24 find_package(LibExpat)
25 find_package(X11)
26
27 # do config checks
28 INCLUDE(ConfigureChecks.cmake)
29
30 # @TODO: how to remove last dir from ${CMAKE_SOURCE_DIR} ? 
31 SET(DBUS_SOURCE_DIR ${CMAKE_SOURCE_DIR}/..)
32
33 # make some more macros available
34 include (MacroLibrary)
35
36 if(VCS)
37         set(DBUS_VERBOSE_C_S 1 CACHE TYPE STRING FORCE)
38         set(DBUS_VERBOSE_C_S 1)
39 endif(VCS)
40
41 if(MSVC)
42         # controll folders in msvc projects
43         include(ProjectSourceGroup)
44         if(NOT GROUP_CODE)
45                 #set(GROUP_CODE split) #cmake default
46                 set(GROUP_CODE flat)
47         endif(NOT GROUP_CODE)
48         ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE)
49         
50         
51         # Use the highest warning level
52         if (WALL)
53                 set(WALL 1 CACHE TYPE STRING FORCE)
54                 set(CMAKE_CXX_WARNING_LEVEL 4 CACHE TYPE STRING FORCE)
55                 
56                 if(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
57                         STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
58                 else(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
59                         SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
60                 endif(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
61                 
62                 if(CMAKE_C_FLAGS MATCHES "/W[0-4]")
63                         STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
64                 else(CMAKE_C_FLAGS MATCHES "/W[0-4]")
65                         SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W4")
66                 endif(CMAKE_C_FLAGS MATCHES "/W[0-4]")
67         else (WALL)
68                 set(CMAKE_CXX_WARNING_LEVEL 3 CACHE TYPE STRING FORCE)
69         endif (WALL)
70         
71         SET(MSVC_W_ERROR   " /we4028 /we4013 /we4133 /we4047 /we4031 /we4002 /we4003 /we4114")
72         SET(MSVC_W_DISABLE " /wd4127 /wd4090 /wd4101 /wd4244")
73
74         SET(CMAKE_C_FLAGS_DEBUG   "${CMAKE_C_FLAGS_DEBUG}   /FIconfig.h ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
75         SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /FIconfig.h ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
76 endif(MSVC)
77
78
79 #########################################################################
80 # Windows CE
81 #
82 # usage:
83 #      cmake ..\trunk\cmake -Dwince=1 -Dwcelibcex=c:\wcelibcex
84 #
85 # change configuration in Visual Studio to 'Pocket PC 2003 (ARMV4)'
86 #
87 if(wince)
88         project(${PACKAGE}-wince)
89         # don't forget parameters
90         set(wince 1 CACHE TYPE STRING FORCE)
91         set(wcelibcex ${wcelibcex} CACHE TYPE STRING FORCE)
92         
93         include_directories(${wcelibcex}/include/wcelibcex ${wcelibcex}/src)
94         
95         add_definitions(
96 # see config.h.cmake
97 #                       -DDBUS_WINCE
98                         -DWINCE
99                         -DWIN32_PLATFORM_PSPC
100                         -D_WINDOWS
101                         -D_UNICODE
102                         -DUNICODE
103                         -DPOCKETPC2003_UI_MODEL
104                         )
105                         
106         # Windows CE Version
107         add_definitions(
108                         -D_WIN32_WCE=0x420
109                         -DWIN32_PLATFORM_PSPC=0x420
110                         -DUNDER_CE=0x420
111                         )
112         
113         # Architecture
114         add_definitions(
115                         -DARM
116                         -D_ARM_
117                         )
118         
119         set(CMAKE_CXX_STANDARD_LIBRARIES "coredll.lib corelibc.lib ole32.lib oleaut32.lib uuid.lib commctrl.lib ws2.lib")
120                         
121         set(CMAKE_SHARED_LINKER_FLAGS "/subsystem:windowsce,4.20 /machine:THUMB")
122
123 endif(wince)
124 #########################################################################
125
126
127 ENABLE_TESTING()
128
129 #########################################################################
130 # Disallow in-source build
131 #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.")
132
133 # ... and warn in case of an earlier in-source build
134 #set(generatedFileInSourceDir EXISTS ${dbus_SOURCE_DIR}/config.h)
135 #if(${generatedFileInSourceDir})
136 #   message(STATUS "config.h exists in your source directory.")
137 #endif(${generatedFileInSourceDir})
138 #########################################################################
139
140 if (WIN32)
141         set (LIBRARY_OUTPUT_PATH  ${CMAKE_BINARY_DIR}/bin)
142 else (WIN32)
143         set (LIBRARY_OUTPUT_PATH  ${CMAKE_BINARY_DIR}/lib)
144 endif (WIN32)
145
146 set (EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
147
148 # for including config.h and for includes like <dir/foo.h>
149 include_directories( ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} )
150 include_directories( ${CMAKE_INCLUDE_PATH} )
151
152 # linker search directories
153 link_directories(${DBUS_LIB_DIR} ${LIBRARY_OUTPUT_PATH} )
154 include_directories( ${CMAKE_LIBRARY_PATH}  )
155
156 set(DBUS_INCLUDES)
157
158 ENABLE_TESTING()
159
160
161 ########### basic vars ###############
162
163 if (DBUSDIR)
164         set(DBUS_INSTALL_DIR "${DBUSDIR}" CACHE TYPE STRING)
165 else (DBUSDIR)
166         set(DBUS_INSTALL_DIR "$ENV{DBUSDIR}" CACHE TYPE STRING)
167 endif (DBUSDIR)
168
169 if (NOT DBUS_INSTALL_DIR)
170         set(DBUS_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}" CACHE TYPE STRING)
171 endif (NOT DBUS_INSTALL_DIR)
172         
173 if (DBUS_INSTALL_SYSTEM_LIBS)
174         set(prefix                   ${DBUS_INSTALL_DIR})
175         set(exec_prefix              ${prefix})
176         set(EXPANDED_LIBDIR          ${DBUS_INSTALL_DIR}/lib)
177         set(EXPANDED_INCLUDEDIR      ${DBUS_INSTALL_DIR}/include)
178         set(EXPANDED_BINDIR          ${DBUS_INSTALL_DIR}/bin)
179         set(EXPANDED_SYSCONFDIR      ${DBUS_INSTALL_DIR}/etc)
180         set(EXPANDED_DATADIR         ${DBUS_INSTALL_DIR}/data)
181         set(DBUS_BINDIR              ${EXPANDED_BINDIR})
182         set(DBUS_MACHINE_UUID_FILE   ${DBUS_INSTALL_DIR}/lib/dbus/machine-id)
183 else (DBUS_INSTALL_SYSTEM_LIBS)
184         set(EXPANDED_INCLUDEDIR      ${CMAKE_SOURCE_DIR}/include)
185         set(EXPANDED_DATADIR         ${CMAKE_BINARY_DIR}/test/data)
186         if (MSVC_IDE)
187                 set(EXPANDED_BINDIR      ${CMAKE_BINARY_DIR}/bin/debug)
188         else (MSVC_IDE)
189                 set(EXPANDED_BINDIR      ${CMAKE_BINARY_DIR}/bin)       
190         endif (MSVC_IDE)
191         set(DBUS_BINDIR              ${EXPANDED_BINDIR})
192         set(DBUS_MACHINE_UUID_FILE   ${CMAKE_BINARY_DIR}/lib/dbus/machine-id)
193 endif (DBUS_INSTALL_SYSTEM_LIBS)
194
195 ########### command line options ###############
196 # TODO: take check from configure.in 
197
198 #AC_ARG_ENABLE(tests, AS_HELP_STRING([--enable-tests],[enable unit test code]),enable_tests=$enableval,enable_tests=$USE_MAINTAINER_MODE)
199 OPTION(DBUS_BUILD_TESTS "enable unit test code" ON)
200 if (DBUS_BUILD_TESTS)   
201         if(NOT MSVC AND NOT CMAKE_BUILD_TYPE MATCHES Release)
202                 add_definitions(-g)
203         endif(NOT MSVC AND NOT CMAKE_BUILD_TYPE MATCHES Release)
204 endif (DBUS_BUILD_TESTS)        
205
206 # win32 dbus service support - this support is not complete
207 OPTION(DBUS_SERVICE "enable dbus service installer" OFF)
208
209 #AC_ARG_ENABLE(ansi, AS_HELP_STRING([--enable-ansi],[enable -ansi -pedantic gcc flags]),enable_ansi=$enableval,enable_ansi=no)
210 OPTION(DBUS_ENABLE_ANSI "enable -ansi -pedantic gcc flags" OFF)
211 if(DBUS_ENABLE_ANSI)
212    if(NOT MSVC)
213         add_definitions(-ansi -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE -pedantic)
214    else(NOT MSVC)
215         add_definitions(-Za -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE -W4)
216    endif(NOT MSVC) 
217 endif(DBUS_ENABLE_ANSI)
218
219 #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)
220 OPTION(DBUS_ENABLE_VERBOSE_MODE "support verbose debug mode" ON)
221
222 #AC_ARG_ENABLE(asserts, AS_HELP_STRING([--enable-asserts],[include assertion checks]),enable_asserts=$enableval,enable_asserts=$USE_MAINTAINER_MODE)
223 OPTION(DBUS_DISABLE_ASSERTS "Disable assertion checking" OFF)
224
225 #AC_ARG_ENABLE(checks, AS_HELP_STRING([--enable-checks],[include sanity checks on public API]),enable_checks=$enableval,enable_checks=yes)
226 OPTION(DBUS_DISABLE_CHECKS "Disable public API sanity checking" OFF)
227
228 #AC_ARG_ENABLE(gcov, AS_HELP_STRING([--enable-gcov],[compile with coverage profiling instrumentation (gcc only)]),enable_gcov=$enableval,enable_gcov=no)
229 OPTION(DBUS_GCOV_ENABLED "compile with coverage profiling instrumentation (gcc only)" OFF)
230 if(DBUS_GCOV_ENABLED)
231    if(NOT MSVC)
232         add_definitions(-fprofile-arcs -ftest-coverage)
233         # FIXME!!!!
234         ## remove optimization
235 #        CFLAGS=`echo "$CFLAGS" | sed -e 's/-O[0-9]*//g'`
236    endif(NOT MSVC) 
237 endif(DBUS_GCOV_ENABLED)
238
239 #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)
240 #abstract sockets missing
241
242 #AC_ARG_ENABLE(selinux, AS_HELP_STRING([--enable-selinux],[build with SELinux support]),enable_selinux=$enableval,enable_selinux=auto)
243 #selinux missing
244
245 #AC_ARG_ENABLE(dnotify, AS_HELP_STRING([--enable-dnotify],[build with dnotify support (linux only)]),enable_dnotify=$enableval,enable_dnotify=auto)
246 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
247     OPTION(DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX "build with dnotify support (linux only)" ON) # add a check !
248 endif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
249
250 #AC_ARG_ENABLE(kqueue, AS_HELP_STRING([--enable-kqueue],[build with kqueue support (FreeBSD only)]),enable_kqueue=$enableval,enable_kqueue=auto)
251 #missing
252
253 #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)
254 STRING(TOUPPER ${CMAKE_SYSTEM_NAME} sysname)
255 if("${sysname}" MATCHES ".*SOLARIS.*")
256     OPTION(HAVE_CONSOLE_OWNER_FILE "enable console owner file (solaris only)" ON)
257     if(HAVE_CONSOLE_OWNER_FILE)
258         SET(DBUS_CONSOLE_OWNER_FILE "/dev/console" CACHE STRING "Directory to check for console ownerhip")
259     endif(HAVE_CONSOLE_OWNER_FILE)
260 endif("${sysname}" MATCHES ".*SOLARIS.*")
261
262 #AC_ARG_WITH(xml, AS_HELP_STRING([--with-xml=[libxml/expat]],[XML library to use]))
263 if(NOT LIBXML2_FOUND AND NOT LIBEXPAT_FOUND)
264     message(FATAL "Neither expat nor libxml2 found!")
265 endif(NOT LIBXML2_FOUND AND NOT LIBEXPAT_FOUND)
266
267 if(LIBEXPAT_FOUND)
268     OPTION(DBUS_USE_EXPAT "Use expat (== ON) or libxml2 (==OFF)" ON)
269 else(LIBEXPAT_FOUND)
270     OPTION(DBUS_USE_EXPAT "Use expat (== ON) or libxml2 (==OFF)" OFF)
271 endif(LIBEXPAT_FOUND)
272
273 if(DBUS_USE_EXPAT)
274     SET(XML_LIB "Expat")
275     SET(XML_LIBRARY     ${LIBEXPAT_LIBRARIES})
276     SET(XML_INCLUDE_DIR ${LIBEXPAT_INCLUDE_DIR})
277 else(DBUS_USE_EXPAT)
278     SET(XML_LIB "LibXML2")
279     SET(XML_LIBRARY     ${LIBXML2_LIBRARIES})
280     SET(XML_INCLUDE_DIR ${LIBXML2_INCLUDE_DIR})
281 endif(DBUS_USE_EXPAT)
282
283
284 #AC_ARG_WITH(init-scripts, AS_HELP_STRING([--with-init-scripts=[redhat]],[Style of init scripts to install]))
285 #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]))
286 #AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
287 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
288 #AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
289 #AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
290 #AC_ARG_WITH(console-owner-file, AS_HELP_STRING([--with-console-owner-file=[filename]],[file whose owner determines current console owner]))
291 #AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
292 #AC_ARG_WITH(dbus_daemondir, AS_HELP_STRING([--with-dbus-daemondir=[dirname]],[Directory for installing the DBUS daemon]))
293 # all missing or hardcoded for now
294
295 # 'hidden' ones
296 set(atomic_int OFF)
297 set(atomic_int486 OFF)
298 if(CMAKE_COMPILER_IS_GNUCC AND NOT DBUS_ENABLE_ANSI)
299     FIND_PROGRAM(UNAME_EXECUTABLE
300                     NAMES uname
301                     PATHS /bin /usr/bin /usr/local/bin c:/Programme/MSys/bin d:/Programme/MSys/bin)
302
303     if(UNAME_EXECUTABLE)
304         EXECUTE_PROCESS(COMMAND ${UNAME_EXECUTABLE} "-m"
305                         OUTPUT_VARIABLE UNAME_OUTPUT)
306
307         if("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
308             set(atomic_int ON)
309         else("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
310             if("UNAME_OUTPUT" MATCHES "^.*i?86.*$")
311                 set(atomic_int ON)
312                 set(atomic_int_486 ON)
313             endif("UNAME_OUTPUT" MATCHES "^.*i?86.*$")
314         endif("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
315     endif(UNAME_EXECUTABLE)
316 endif(CMAKE_COMPILER_IS_GNUCC AND NOT DBUS_ENABLE_ANSI)
317
318 OPTION(DBUS_HAVE_ATOMIC_INT    "Some atomic integer implementation present" ${atomic_int})
319 OPTION(DBUS_USE_ATOMIC_INT_486 "Use atomic integer implementation for 486" ${atomic_int_486})
320
321 if(X11_FOUND)
322   OPTION(DBUS_BUILD_X11 "Build X11-dependent code " ON)
323 endif(X11_FOUND)
324
325 # test binary names
326 if (WIN32)
327         set (EXT ".exe")
328 endif(WIN32)
329
330 # confirure.in:
331 #TEST_PATH(SERVICE_DIR,          data/valid-service-files)
332 #TEST_PATH(SERVICE_BINARY,       test-service)
333 #TEST_PATH(SHELL_SERVICE_BINARY, test-shell-service)
334 #TEST_PATH(EXIT_BINARY,          test-exit)
335 #TEST_PATH(SEGFAULT_BINARY,      test-segfault)
336 #TEST_PATH(SLEEP_FOREVER_BINARY, test-sleep-forever)
337
338 set(TEST_SERVICE_DIR          ${CMAKE_BINARY_DIR}/test/data/valid-service-files     CACHE STRING "Full path to test file test/data/valid-service-files in builddir")
339 set(TEST_SERVICE_BINARY       ${EXPANDED_BINDIR}/test-service${EXT}       CACHE STRING "Full path to test file test/test-service in builddir")
340 set(TEST_SHELL_SERVICE_BINARY ${EXPANDED_BINDIR}/test-shell-service${EXT} CACHE STRING "Full path to test file test/test-shell-service in builddir")    
341 set(TEST_EXIT_BINARY          ${EXPANDED_BINDIR}/test-exit${EXT}          CACHE STRING "Full path to test file test/test-exit in builddir")
342 set(TEST_SEGFAULT_BINARY      ${EXPANDED_BINDIR}/test-segfault${EXT}      CACHE STRING "Full path to test file test/test-segfault in builddir")
343 set(TEST_SLEEP_FOREVER_BINARY ${EXPANDED_BINDIR}/test-sleep-forever${EXT} CACHE STRING "Full path to test file test/test-sleep-forever in builddir")
344
345 #### Find socket directories
346 if (NOT WIN32)
347     if (NOT $ENV{TMPDIR} STREQUAL "")
348         set (DBUS_SESSION_SOCKET_DIR $ENV{TMPDIR})
349     else (NOT $ENV{TMPDIR} STREQUAL "")
350         if (NOT $ENV{TEMP} STREQUAL "")
351             set (DBUS_SESSION_SOCKET_DIR $ENV{TEMP})
352         else (NOT $ENV{TEMP} STREQUAL "")
353             if (NOT $ENV{TMP} STREQUAL "")
354                 set (DBUS_SESSION_SOCKET_DIR $ENV{TMP})
355             else (NOT $ENV{TMP} STREQUAL "")
356                 set (DBUS_SESSION_SOCKET_DIR /tmp)
357             endif (NOT $ENV{TMP} STREQUAL "")
358         endif (NOT $ENV{TEMP} STREQUAL "")
359     endif (NOT $ENV{TMPDIR} STREQUAL "")
360 endif (NOT WIN32)
361
362 #AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
363
364 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
365
366 #if ! test -z "$with_system_pid_file"; then
367 #   DBUS_SYSTEM_PID_FILE=$with_system_pid_file
368 #elif test x$operating_system = xredhat ; then
369 #   DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/messagebus.pid
370 #else
371 #   DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/dbus/pid
372 #fi
373 # TODO: fix redhet 
374 if (WIN32)
375   # bus-test expects a non empty string
376         set (DBUS_SYSTEM_PID_FILE "/dbus-pid")
377 else (WIN32)
378         set (DBUS_SYSTEM_PID_FILE ${EXPANDED_LOCALSTATEDIR}/run/dbus/pid)
379 endif (WIN32)
380
381 #AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
382
383 #AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
384
385 if (WIN32)
386         set (DBUS_CONSOLE_AUTH_DIR "")
387 else (WIN32)
388         set (DBUS_CONSOLE_AUTH_DIR "/var/run/console/")
389 endif (WIN32)
390
391 #AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
392
393 set (DBUS_USER )
394
395
396 if (WIN32)
397   set (DBUS_SESSION_BUS_DEFAULT_ADDRESS "tcp:host=localhost,port=12434")
398   set (DBUS_SYSTEM_BUS_DEFAULT_ADDRESS "tcp:host=localhost,port=12434")
399   set (DBUS_SYSTEM_CONFIG_FILE "etc/system.conf")
400   set (DBUS_SESSION_CONFIG_FILE "etc/session.conf")
401   # bus-test expects a non empty string
402   set (DBUS_USER "Administrator") 
403   set (DBUS_DATADIR "data")
404 else (WIN32)
405   set (DBUS_SYSTEM_BUS_DEFAULT_ADDRESS unix:tmpdir=)
406   set (DBUS_SESSION_BUS_DEFAULT_ADDRESS unix:path=${DBUS_SESSION_SOCKET_DIR})
407   set (sysconfdir "")
408   set (configdir ${sysconfdir}/dbus-1 )
409   set (DBUS_SYSTEM_CONFIG_FILE  ${configdir}/system.conf)
410   set (DBUS_SESSION_CONFIG_FILE ${configdir}/session.conf)
411   set (DBUS_USER "root") 
412   set (DBUS_DATADIR ${EXPANDED_DATADIR})
413 endif (WIN32)
414
415 set (DAEMON_NAME dbus-daemon)  
416
417 ########### create config.h ###############
418
419 #include(ConfigureChecks.cmake)
420
421 # better use flags for gcc 
422 if (MINGW)
423         set (HAVE_GNUC_VARARGS 1)
424 endif(MINGW)
425
426 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h )
427 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/dbus-env.bat.cmake ${CMAKE_BINARY_DIR}/bin/dbus-env.bat )
428 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/dbus-launch.bat.cmake ${CMAKE_BINARY_DIR}/bin/dbus-launch.bat )
429 install_files(/bin FILES ${CMAKE_BINARY_DIR}/bin/dbus-env.bat)  
430 install_files(/bin FILES ${CMAKE_BINARY_DIR}/bin/dbus-launch.bat)       
431
432 # compiler definitions 
433 add_definitions(-DHAVE_CONFIG_H=1)
434 add_definitions(${DBUS_BUS_CFLAGS} -DDBUS_API_SUBJECT_TO_CHANGE)
435
436
437 ########### subdirs ###############
438
439 add_subdirectory( dbus )
440 add_subdirectory( bus )
441 if (DBUS_BUILD_TESTS)
442         add_subdirectory( test )
443 endif (DBUS_BUILD_TESTS)
444 add_subdirectory( tools )
445 add_subdirectory( doc )
446
447
448 OPTION(DBUS_INSTALL_SYSTEM_LIBS "install required system libraries" OFF)
449 MESSAGE(" ")
450 MESSAGE("set -DDBUS_INSTALL_SYSTEM_LIBS=1 to install runtime libraries too")
451 MESSAGE("set DBUSDIR (environment or cmake option) to overwrite the default install directory ")
452 MESSAGE(" ")
453 MESSAGE(" ")
454 GET_FILENAME_COMPONENT(C_COMPILER ${CMAKE_C_COMPILER} NAME)
455 GET_FILENAME_COMPONENT(CXX_COMPILER ${CMAKE_CXX_COMPILER} NAME)
456
457 message("                  D-BUS ${VERSION}                                    ")
458 message("                  ==========                                          ")
459 message("                                                                      ")
460 message("        prefix:                   ${prefix}                           ")
461 message("        exec_prefix:              ${exec_prefix}                      ")
462 message("        libdir:                   ${EXPANDED_LIBDIR}                  ")
463 message("        bindir:                   ${EXPANDED_BINDIR}                  ")
464 message("        sysconfdir:               ${EXPANDED_SYSCONFDIR}              ")
465 message("        localstatedir:            ${EXPANDED_LOCALSTATEDIR}           ")
466 message("        datadir:                  ${EXPANDED_DATADIR}                 ")
467 message("        source code location:     ${DBUS_SOURCE_DIR}                  ")
468 message("        c compiler:               ${C_COMPILER}                       ")
469 message("        cflags:                   ${CMAKE_C_FLAGS}                    ")
470 message("        cflags debug:             ${CMAKE_C_FLAGS_DEBUG}              ")
471 message("        cflags release:           ${CMAKE_C_FLAGS_RELEASE}            ")
472 message("        cxx compiler:             ${CXX_COMPILER}                     ")
473 message("        cxxflags:                 ${CMAKE_CXX_FLAGS}                  ")
474 message("        cxxflags debug:           ${CMAKE_CXX_FLAGS_DEBUG}            ")
475 message("        cxxflags release:         ${CMAKE_CXX_FLAGS_RELEASE}          ")
476 message("        64-bit int:               ${DBUS_INT64_TYPE}                  ")
477 message("        32-bit int:               ${DBUS_INT32_TYPE}                  ")
478 message("        16-bit int:               ${DBUS_INT16_TYPE}                  ")
479 message("        Doxygen:                  ${DOXYGEN}                          ")
480 message("        xmlto:                    ${XMLTO}                            ")
481
482
483 #message("        Maintainer mode:          ${USE_MAINTAINER_MODE}              ")
484 message("        gcc coverage profiling:   ${DBUS_GCOV_ENABLED}                ")
485 message("        Building unit tests:      ${DBUS_BUILD_TESTS}                 ")
486 message("        Building verbose mode:    ${DBUS_ENABLE_VERBOSE_MODE}         ")
487 message("        Building w/o assertions:  ${DBUS_DISABLE_ASSERTS}             ")
488 message("        Building w/o checks:      ${DBUS_DISABLE_CHECKS}              ")
489 message("        installing system libs:   ${DBUS_INSTALL_SYSTEM_LIBS}         ")
490 #message("        Building SELinux support: ${have_selinux}                     ")
491 #message("        Building dnotify support: ${have_dnotify}                     ")
492 message("        Building Doxygen docs:    ${DBUS_ENABLE_DOXYGEN_DOCS}         ")
493 #message("        Building XML docs:        ${enable_xml_docs}                  ")
494 #message("        Gettext libs (empty OK):  ${INTLLIBS}                         ")
495 message("        Using XML parser:         ${XML_LIB}                          ")
496 if (WIN32)
497 message("        System bus address:       ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}  ")
498 message("        Session bus address:      ${DBUS_SESSION_BUS_DEFAULT_ADDRESS} ")
499 else (WIN32)
500 #message("        Init scripts style:       ${with_init_scripts}                ")
501 #message("        Abstract socket names:    ${have_abstract_sockets}            ")
502 message("        System bus socket:        ${DBUS_SYSTEM_SOCKET}               ")
503 message("        System bus address:       ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}  ")
504 message("        System bus PID file:      ${DBUS_SYSTEM_PID_FILE}             ")
505 message("        Session bus socket dir:   ${DBUS_SESSION_SOCKET_DIR}          ")
506 message("        Console auth dir:         ${DBUS_CONSOLE_AUTH_DIR}            ")
507 message("        System bus user:          ${DBUS_USER}                        ")
508 message("        'make check' socket dir:  ${TEST_SOCKET_DIR}                  ")
509 endif (WIN32)
510 MESSAGE(" ")
511 if (DBUS_BUILD_TESTS)
512     message("NOTE: building with unit tests increases the size of the installed library and renders it insecure.")
513 endif(DBUS_BUILD_TESTS)
514
515 if (DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERTS)
516     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)")
517 endif(DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERTS)
518
519 if (DBUS_GCOV_ENABLED)
520     message("NOTE: building with coverage profiling is definitely for developers only.")
521 endif(DBUS_GCOV_ENABLED)
522
523 if (DBUS_ENABLE_VERBOSE_MODE)
524     message("NOTE: building with verbose mode increases library size, may slightly increase security risk, and decreases performance.")
525 endif(DBUS_ENABLE_VERBOSE_MODE)
526
527 if(NOT DBUS_DISABLE_ASSERTS)
528     message("NOTE: building with assertions increases library size and decreases performance.")
529 endif(NOT DBUS_DISABLE_ASSERTS)
530
531 if (DBUS_DISABLE_CHECKS)
532     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.")
533 endif(DBUS_DISABLE_CHECKS)
534 MESSAGE(" ")
535
536
537 INCLUDE(modules/CPackInstallConfig.cmake)