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