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