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