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