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