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