836f4b23bd7b4a7a98138bd9769e3a6b05573eee
[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 include(Macros)
23 TIMESTAMP(DBUS_BUILD_TIMESTAMP)
24
25 ########### basic vars ###############
26
27
28 if (DBUSDIR)
29         set(DBUS_INSTALL_DIR "${DBUSDIR}")
30 endif (DBUSDIR)
31 if ($ENV{DBUSDIR})
32         set(DBUS_INSTALL_DIR "$ENV{DBUSDIR}")
33 endif ($ENV{DBUSDIR})
34
35 if (DBUS_INSTALL_DIR)
36         set(CMAKE_INSTALL_PREFIX "${DBUS_INSTALL_DIR}" CACHE PATH "install prefix" FORCE)
37 else (DBUS_INSTALL_DIR)
38         set(DBUS_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}")
39 endif (DBUS_INSTALL_DIR)
40
41 # autotools style
42 if (NOT DATAROOTDIR)
43     set (DATAROOTDIR share)
44 endif()
45
46 if (NOT DATADIR)
47     set (DATADIR ${DATAROOTDIR})
48 endif()
49
50 if (NOT DOCDIR)
51     SET(DOCDIR ${DATAROOTDIR}/doc/dbus)
52 endif()
53
54 if (NOT DBUS_DATADIR)
55     SET(DBUS_DATADIR ${DATADIR})
56 endif()
57
58 set(prefix                   ${DBUS_INSTALL_DIR})
59 set(exec_prefix              ${prefix})
60 set(EXPANDED_LIBDIR          ${DBUS_INSTALL_DIR}/lib)
61 set(EXPANDED_INCLUDEDIR      ${DBUS_INSTALL_DIR}/include)
62 set(EXPANDED_BINDIR          ${DBUS_INSTALL_DIR}/bin)
63 set(EXPANDED_SYSCONFDIR      ${DBUS_INSTALL_DIR}/etc)
64 set(EXPANDED_DATADIR         ${DBUS_INSTALL_DIR}/${DBUS_DATADIR})
65 set(DBUS_MACHINE_UUID_FILE   ${DBUS_INSTALL_DIR}/lib/dbus/machine-id)
66 set(DBUS_BINDIR              ${EXPANDED_BINDIR})
67 set(DBUS_DAEMONDIR           ${EXPANDED_BINDIR})
68
69
70 #enable building of shared library
71 SET(BUILD_SHARED_LIBS ON)
72
73 if(WIN32)
74     set(INSTALL_TARGETS_DEFAULT_ARGS  RUNTIME DESTINATION "bin" LIBRARY DESTINATION "lib" ARCHIVE DESTINATION "lib")
75 else()
76     set(INSTALL_TARGETS_DEFAULT_ARGS  RUNTIME DESTINATION "${EXPANDED_LIBDIR}" LIBRARY DESTINATION "${EXPANDED_LIBDIR}" ARCHIVE DESTINATION "${EXPANDED_LIBDIR}")
77 endif()
78
79 if (CYGWIN)
80    set (WIN32)
81 endif (CYGWIN)
82
83 # search for required packages
84 if (WIN32)
85     # include local header first to avoid using old installed header
86     set (CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH} ${CMAKE_SOURCE_DIR}/..)
87         find_package(LibIconv)
88     include(Win32Macros)
89     addExplorerWrapper(${CMAKE_PROJECT_NAME})
90 endif (WIN32)
91
92 if(NOT WIN32)
93         option (DBUS_ENABLE_ABSTRACT_SOCKETS "enable support for abstract sockets" ON)
94         set (CMAKE_THREAD_PREFER_PTHREAD ON)
95         include (FindThreads)
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_ASSERT "Disable assertion checking" OFF)
100
101 option (DBUS_ENABLE_STATS "enable bus daemon usage statistics" OFF)
102
103 find_package(EXPAT)
104 find_package(X11)
105
106 # analogous to AC_USE_SYSTEM_EXTENSIONS in configure.ac
107 add_definitions(-D_POSIX_C_SOURCE=199309L -D_GNU_SOURCE)
108
109 # do config checks
110 INCLUDE(ConfigureChecks.cmake)
111
112 # @TODO: how to remove last dir from ${CMAKE_SOURCE_DIR} ?
113 SET(DBUS_SOURCE_DIR ${CMAKE_SOURCE_DIR}/..)
114
115 # make some more macros available
116 include (MacroLibrary)
117
118 if(VCS)
119         set(DBUS_VERBOSE_C_S 1 CACHE STRING "verbose mode" FORCE)
120 endif(VCS)
121
122 if(WIN32)
123         set(CMAKE_DEBUG_POSTFIX "d")
124         if(MSVC)
125                 # controll folders in msvc projects
126                 include(ProjectSourceGroup)
127                 if(NOT GROUP_CODE)
128                         #set(GROUP_CODE split) #cmake default
129                         set(GROUP_CODE flat)
130                 endif(NOT GROUP_CODE)
131                 ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE)
132
133
134                 # Use the highest warning level
135                 if (WALL)
136                         set(WALL 1 CACHE STRING "all warnings"  FORCE)
137                         set(CMAKE_CXX_WARNING_LEVEL 4 CACHE STRING "warning level" FORCE)
138
139                         if(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
140                                 STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
141                         else(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
142                                 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
143                         endif(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
144
145                         if(CMAKE_C_FLAGS MATCHES "/W[0-4]")
146                                 STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
147                         else(CMAKE_C_FLAGS MATCHES "/W[0-4]")
148                                 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W4")
149                         endif(CMAKE_C_FLAGS MATCHES "/W[0-4]")
150                 else (WALL)
151                         set(CMAKE_CXX_WARNING_LEVEL 3 CACHE STRING "warning level" FORCE)
152                 endif (WALL)
153
154                 SET(MSVC_W_ERROR   " /we4028 /we4013 /we4133 /we4047 /we4031 /we4002 /we4003 /we4114")
155                 SET(MSVC_W_DISABLE " /wd4127 /wd4090 /wd4101 /wd4244")
156
157                 SET(CMAKE_C_FLAGS_DEBUG   "${CMAKE_C_FLAGS_DEBUG}   /FIconfig.h ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
158                 SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /FIconfig.h ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
159         endif(MSVC)
160 endif(WIN32)
161
162 if (UNIX AND NOT DBUS_DISABLE_ASSERT)
163         # required for backtrace
164         SET(CMAKE_C_FLAGS_DEBUG   "${CMAKE_C_FLAGS_DEBUG}   -Wl,--export-dynamic")
165         SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -Wl,--export-dynamic")
166         add_definitions(-DDBUS_BUILT_R_DYNAMIC)
167 endif (UNIX AND NOT DBUS_DISABLE_ASSERT)
168
169 SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG}  -D_DEBUG")
170
171 #########################################################################
172 # Windows CE (>= 5.0.0)
173 #
174 # WinCE support now relies on the presence of platform files, found in cmake/modules/platform
175 # Cmake 2.8.0 doesn't include WinCE platform files by default, but working ones can be found
176 # on CMake's bugtracker :
177 # http://public.kitware.com/Bug/view.php?id=7919
178 #
179 # for cmake 2.8.0 get the following patch only :
180 # http://public.kitware.com/Bug/file_download.php?file_id=2944&type=bug
181 #
182 # after applying the patch, you can enable the WinCE build by specifying :
183 # cmake [...] -DCMAKE_SYSTEM_NAME=WinCE -DCMAKE_SYSTEM_VERSION=X.XX
184 # (where X.XX is your actual WinCE version, e.g. 5.02 for Windows Mobile 6)
185 #
186 # Note that you should have a proper cross-compilation environment set up prior to running
187 # cmake, ie. the PATH, INCLUDE and LIB env vars pointing to your CE SDK/toolchain.
188 #
189 if(WINCE)
190
191 MESSAGE("Building for WinCE (${CMAKE_SYSTEM_VERSION})")
192
193 endif(WINCE)
194 #########################################################################
195
196
197 ENABLE_TESTING()
198
199 #########################################################################
200 # Disallow in-source build
201 #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.")
202
203 # ... and warn in case of an earlier in-source build
204 #set(generatedFileInSourceDir EXISTS ${dbus_SOURCE_DIR}/config.h)
205 #if(${generatedFileInSourceDir})
206 #   message(STATUS "config.h exists in your source directory.")
207 #endif(${generatedFileInSourceDir})
208 #########################################################################
209
210 if (WIN32 OR CYGWIN)
211         set (LIBRARY_OUTPUT_PATH  ${CMAKE_BINARY_DIR}/bin)
212 else (WIN32 OR CYGWIN)
213         set (LIBRARY_OUTPUT_PATH  ${CMAKE_BINARY_DIR}/lib)
214 endif (WIN32 OR CYGWIN)
215
216 set (EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
217
218 # for including config.h and for includes like <dir/foo.h>
219 include_directories( ${CMAKE_SOURCE_DIR}/.. ${CMAKE_BINARY_DIR} ${CMAKE_INCLUDE_PATH} )
220
221 # linker search directories
222 link_directories(${DBUS_LIB_DIR} ${LIBRARY_OUTPUT_PATH} )
223 include_directories( ${CMAKE_LIBRARY_PATH}  )
224
225 set(DBUS_INCLUDES)
226
227 ENABLE_TESTING()
228
229 ########### command line options ###############
230 # TODO: take check from configure.in
231
232 #AC_ARG_ENABLE(tests, AS_HELP_STRING([--enable-tests],[enable unit test code]),enable_tests=$enableval,enable_tests=$USE_MAINTAINER_MODE)
233 option (DBUS_BUILD_TESTS "enable unit test code" ON)
234  
235 if(DBUS_BUILD_TESTS)
236     add_definitions(-DDBUS_BUILD_TESTS -DDBUS_ENABLE_EMBEDDED_TESTS)
237 endif(DBUS_BUILD_TESTS)
238
239 option (DBUS_USE_OUTPUT_DEBUG_STRING "enable win32 debug port for message output" OFF)
240 if(DBUS_USE_OUTPUT_DEBUG_STRING)
241     add_definitions(-DDBUS_USE_OUTPUT_DEBUG_STRING)
242 endif(DBUS_USE_OUTPUT_DEBUG_STRING)
243
244 if(WIN32)
245         # win32 dbus service support - this support is not complete
246         option (DBUS_SERVICE "enable dbus service installer" OFF)
247 endif(WIN32)
248
249 #AC_ARG_ENABLE(ansi, AS_HELP_STRING([--enable-ansi],[enable -ansi -pedantic gcc flags]),enable_ansi=$enableval,enable_ansi=no)
250 option (DBUS_ENABLE_ANSI "enable -ansi -pedantic gcc flags" OFF)
251 if(DBUS_ENABLE_ANSI)
252    if(NOT MSVC)
253         add_definitions(-ansi -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE -pedantic)
254    else(NOT MSVC)
255         add_definitions(-Za -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE -W4)
256    endif(NOT MSVC)
257 endif(DBUS_ENABLE_ANSI)
258
259 #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)
260 option (DBUS_ENABLE_VERBOSE_MODE "support verbose debug mode" ON)
261
262 #AC_ARG_ENABLE(checks, AS_HELP_STRING([--enable-checks],[include sanity checks on public API]),enable_checks=$enableval,enable_checks=yes)
263 option (DBUS_DISABLE_CHECKS "Disable public API sanity checking" OFF)
264
265 if(NOT MSVC)
266     #AC_ARG_ENABLE(gcov, AS_HELP_STRING([--enable-gcov],[compile with coverage profiling instrumentation (gcc only)]),enable_gcov=$enableval,enable_gcov=no)
267     option (DBUS_GCOV_ENABLED "compile with coverage profiling instrumentation (gcc only)" OFF)
268     if(DBUS_GCOV_ENABLED)
269             add_definitions(-fprofile-arcs -ftest-coverage)
270             # FIXME!!!!
271             ## remove optimization
272     #        CFLAGS=`echo "$CFLAGS" | sed -e 's/-O[0-9]*//g'`
273     endif(DBUS_GCOV_ENABLED)
274 endif(NOT MSVC)
275
276 #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)
277 # -> moved before include(ConfigureChecks.cmake)
278
279 #AC_ARG_ENABLE(selinux, AS_HELP_STRING([--enable-selinux],[build with SELinux support]),enable_selinux=$enableval,enable_selinux=auto)
280 #selinux missing
281
282 #AC_ARG_ENABLE(dnotify, AS_HELP_STRING([--enable-dnotify],[build with dnotify support (linux only)]),enable_dnotify=$enableval,enable_dnotify=auto)
283 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
284     option (DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX "build with dnotify support (linux only)" ON) # add a check !
285 endif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
286
287 #AC_ARG_ENABLE(kqueue, AS_HELP_STRING([--enable-kqueue],[build with kqueue support (FreeBSD only)]),enable_kqueue=$enableval,enable_kqueue=auto)
288 #missing
289
290 #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)
291 STRING(TOUPPER ${CMAKE_SYSTEM_NAME} sysname)
292 if("${sysname}" MATCHES ".*SOLARIS.*")
293     option (HAVE_CONSOLE_OWNER_FILE "enable console owner file (solaris only)" ON)
294     if(HAVE_CONSOLE_OWNER_FILE)
295         set (DBUS_CONSOLE_OWNER_FILE "/dev/console" CACHE STRING "Directory to check for console ownerhip")
296     endif(HAVE_CONSOLE_OWNER_FILE)
297 endif("${sysname}" MATCHES ".*SOLARIS.*")
298
299 #AC_ARG_WITH(xml, AS_HELP_STRING([--with-xml=[libxml/expat]],[XML library to use]))
300 if(NOT LIBXML2_FOUND AND NOT EXPAT_FOUND)
301     message(FATAL "Neither expat nor libxml2 found!")
302 endif(NOT LIBXML2_FOUND AND NOT EXPAT_FOUND)
303
304 SET(XML_LIB "Expat")
305 SET(XML_LIBRARY     ${EXPAT_LIBRARIES})
306 SET(XML_INCLUDE_DIR ${EXPAT_INCLUDE_DIR})
307
308 #AC_ARG_WITH(init-scripts, AS_HELP_STRING([--with-init-scripts=[redhat]],[Style of init scripts to install]))
309 #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]))
310 #AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
311 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
312 #AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
313 #AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
314 #AC_ARG_WITH(console-owner-file, AS_HELP_STRING([--with-console-owner-file=[filename]],[file whose owner determines current console owner]))
315 #AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
316 #AC_ARG_WITH(dbus_daemondir, AS_HELP_STRING([--with-dbus-daemondir=[dirname]],[Directory for installing the DBUS daemon]))
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 "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 #AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
397
398 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
399
400 #if ! test -z "$with_system_pid_file"; then
401 #   DBUS_SYSTEM_PID_FILE=$with_system_pid_file
402 #elif test x$operating_system = xredhat ; then
403 #   DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/messagebus.pid
404 #else
405 #   DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/dbus/pid
406 #fi
407 # TODO: fix redhet
408 if (WIN32)
409   # bus-test expects a non empty string
410         set (DBUS_SYSTEM_PID_FILE "/dbus-pid")
411 else (WIN32)
412         set (DBUS_SYSTEM_PID_FILE ${EXPANDED_LOCALSTATEDIR}/run/dbus/pid)
413 endif (WIN32)
414
415 #AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
416
417 #AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
418
419 if (WIN32)
420         set (DBUS_CONSOLE_AUTH_DIR "")
421 else (WIN32)
422         set (DBUS_CONSOLE_AUTH_DIR "/var/run/console/")
423 endif (WIN32)
424
425 #AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
426
427 set (DBUS_USER )
428
429 # In Autotools this has a different default on QNX, but there seems little
430 # point in replicating that here; if you're on an unusual Unix, use Autotools.
431 set (DEFAULT_MESSAGE_UNIX_FDS 1024)
432
433 # This won't work on Windows. It's not meant to - the system bus is
434 # meaningless on Windows anyway.
435 #
436 # This has to be suitable for hard-coding in client libraries as well as
437 # in the dbus-daemon's configuration, so it has to be valid to listen on
438 # and also to connect to. If this ever changes, it'll need to be split into
439 # two variables, one for the listening address and one for the connecting
440 # address.
441 set (DBUS_SYSTEM_BUS_DEFAULT_ADDRESS "unix:path=${EXPANDED_LOCALSTATEDIR}/run/dbus/system_bus_socket" CACHE STRING "system bus default address")
442
443 if (WIN32)
444   set (DBUS_SESSION_BUS_LISTEN_ADDRESS "autolaunch:" CACHE STRING "session bus default listening address")
445   set (DBUS_SESSION_BUS_CONNECT_ADDRESS "autolaunch:" CACHE STRING "session bus fallback address for clients")
446
447   set (DBUS_SYSTEM_CONFIG_FILE "etc/dbus-1/system.conf")
448   set (DBUS_SESSION_CONFIG_FILE "etc/dbus-1/session.conf")
449   # bus-test expects a non empty string
450   set (DBUS_USER "Administrator")
451 else (WIN32)
452   set (DBUS_SESSION_BUS_LISTEN_ADDRESS "unix:tmpdir=${DBUS_SESSION_SOCKET_DIR}" CACHE STRING "session bus default listening address")
453   set (DBUS_SESSION_BUS_CONNECT_ADDRESS "autolaunch:" CACHE STRING "session bus fallback address for clients")
454   set (sysconfdir "")
455   set (configdir ${sysconfdir}/dbus-1 )
456   set (DBUS_SYSTEM_CONFIG_FILE  ${configdir}/system.conf)
457   set (DBUS_SESSION_CONFIG_FILE ${configdir}/session.conf)
458   set (DBUS_USER "root")
459 endif (WIN32)
460
461 set (DBUS_DAEMON_NAME "dbus-daemon" CACHE STRING "The name of the dbus daemon executable")
462
463 ########### create config.h ###############
464
465 #include(ConfigureChecks.cmake)
466
467 # better use flags for gcc
468 if (MINGW)
469         set (HAVE_GNUC_VARARGS 1)
470 endif(MINGW)
471
472 # compiler definitions
473 add_definitions(-DHAVE_CONFIG_H=1)
474 add_definitions(${DBUS_BUS_CFLAGS})
475
476
477 if (DBUS_BUILD_TESTS)
478     # set variables used for the .in files (substituted by configure_file) in test/data:
479     set(DBUS_TEST_EXEC ${EXECUTABLE_OUTPUT_PATH}${IDE_BIN})
480     set(DBUS_TEST_DATA ${CMAKE_BINARY_DIR}/test/data)
481     set(TEST_SOCKET_DIR ${DBUS_SESSION_SOCKET_DIR} )
482     set(TEST_LAUNCH_HELPER_BINARY ${EXECUTABLE_OUTPUT_PATH}/dbus-daemon-launch-helper-test)
483     if (UNIX)
484         set (TEST_LISTEN "unix:tmpdir=${TEST_SOCKET_DIR}")
485     endif (UNIX)
486     if (WIN32)
487         set (TEST_LISTEN "tcp:host=localhost")
488     endif (WIN32)
489 endif  (DBUS_BUILD_TESTS)
490
491 set(DBUS_LIBRARIES dbus-1)
492 set(DBUS_INTERNAL_LIBRARIES dbus-internal)
493
494 # settings for building and using static internal lib
495 # important note: DBUS_INTERNAL_xxxxx_DEFINITIONS must *not* be set when building dbus-1 library
496 set (DBUS_INTERNAL_ADD_LIBRARY_OPTIONS STATIC)
497 set (DBUS_INTERNAL_LIBRARY_DEFINITIONS "-DDBUS_STATIC_BUILD")
498 set (DBUS_INTERNAL_CLIENT_DEFINITIONS "-DDBUS_STATIC_BUILD")
499
500 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h )
501
502 if (WIN32)
503 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/dbus-env.bat.cmake ${CMAKE_BINARY_DIR}/bin/dbus-env.bat )
504 install_files(/bin FILES ${CMAKE_BINARY_DIR}/bin/dbus-env.bat)
505 endif()
506
507 add_definitions(-DHAVE_CONFIG_H=1)
508
509 ########### subdirs ###############
510
511 add_subdirectory( dbus )
512 add_subdirectory( bus )
513 if (DBUS_BUILD_TESTS)
514         add_subdirectory( test )
515 endif (DBUS_BUILD_TESTS)
516 add_subdirectory( tools )
517 add_subdirectory( doc )
518
519
520 OPTION(DBUS_INSTALL_SYSTEM_LIBS "install required system libraries" OFF)
521 MESSAGE(" ")
522 MESSAGE("set -DDBUS_INSTALL_SYSTEM_LIBS=1 to install runtime libraries too")
523 MESSAGE("set DBUSDIR (environment or cmake option) to overwrite the default install directory ")
524 MESSAGE(" ")
525 MESSAGE(" ")
526 GET_FILENAME_COMPONENT(C_COMPILER ${CMAKE_C_COMPILER} NAME)
527 GET_FILENAME_COMPONENT(CXX_COMPILER ${CMAKE_CXX_COMPILER} NAME)
528
529 message("                  D-BUS ${DBUS_VERSION}                               ")
530 message("                  ===========                                         ")
531 message("                                                                      ")
532 message("        install prefix:           ${prefix}                           ")
533 message("        install exec_prefix:      ${exec_prefix}                      ")
534 message("        install libdir:           ${EXPANDED_LIBDIR}                  ")
535 message("        install bindir:           ${EXPANDED_BINDIR}                  ")
536 message("        install sysconfdir:       ${EXPANDED_SYSCONFDIR}              ")
537 #message("        install localstatedir:    ${EXPANDED_LOCALSTATEDIR}           ")
538 message("        install datadir:          ${EXPANDED_DATADIR}                 ")
539 message("        source code location:     ${DBUS_SOURCE_DIR}                  ")
540 message("        build dir:                ${CMAKE_BINARY_DIR}                 ")
541 message("        c compiler:               ${C_COMPILER}                       ")
542 message("        cflags:                   ${CMAKE_C_FLAGS}                    ")
543 message("        cflags debug:             ${CMAKE_C_FLAGS_DEBUG}              ")
544 message("        cflags release:           ${CMAKE_C_FLAGS_RELEASE}            ")
545 message("        cxx compiler:             ${CXX_COMPILER}                     ")
546 message("        cxxflags:                 ${CMAKE_CXX_FLAGS}                  ")
547 message("        cxxflags debug:           ${CMAKE_CXX_FLAGS_DEBUG}            ")
548 message("        cxxflags release:         ${CMAKE_CXX_FLAGS_RELEASE}          ")
549 message("        64-bit int:               ${DBUS_INT64_TYPE}                  ")
550 message("        32-bit int:               ${DBUS_INT32_TYPE}                  ")
551 message("        16-bit int:               ${DBUS_INT16_TYPE}                  ")
552 message("        Doxygen:                  ${DOXYGEN}                          ")
553 message("        Docbook Generator:        ${DOCBOOK_GENERATOR_NAME}           ")
554
555
556 #message("        Maintainer mode:          ${USE_MAINTAINER_MODE}              ")
557 message("        gcc coverage profiling:   ${DBUS_GCOV_ENABLED}                ")
558 message("        Building unit tests:      ${DBUS_BUILD_TESTS}                 ")
559 message("        Building verbose mode:    ${DBUS_ENABLE_VERBOSE_MODE}         ")
560 message("        Building w/o assertions:  ${DBUS_DISABLE_ASSERT}             ")
561 message("        Building w/o checks:      ${DBUS_DISABLE_CHECKS}              ")
562 message("        Building bus stats API:   ${DBUS_ENABLE_STATS}                ")
563 message("        installing system libs:   ${DBUS_INSTALL_SYSTEM_LIBS}         ")
564 #message("        Building SELinux support: ${have_selinux}                     ")
565 #message("        Building dnotify support: ${have_dnotify}                     ")
566 message("        Building Doxygen docs:    ${DBUS_ENABLE_DOXYGEN_DOCS}         ")
567 message("        Building XML docs:        ${DBUS_ENABLE_XML_DOCS}             ")
568 #message("        Gettext libs (empty OK):  ${INTLLIBS}                         ")
569 message("        Using XML parser:         ${XML_LIB}                          ")
570 message("        Daemon executable name:   ${DBUS_DAEMON_NAME}")
571 if (WIN32)
572 message("        System bus address:       ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}  ")
573 message("        Session bus listens on:   ${DBUS_SESSION_BUS_LISTEN_ADDRESS} ")
574 message("        Session clients connect to: ${DBUS_SESSION_BUS_CONNECT_ADDRESS} ")
575 else (WIN32)
576 #message("        Init scripts style:       ${with_init_scripts}                ")
577 #message("        Abstract socket names:    ${have_abstract_sockets}            ")
578 message("        System bus socket:        ${DBUS_SYSTEM_SOCKET}               ")
579 message("        System bus address:       ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}  ")
580 message("        System bus PID file:      ${DBUS_SYSTEM_PID_FILE}             ")
581 message("        Session bus socket dir:   ${DBUS_SESSION_SOCKET_DIR}          ")
582 message("        Console auth dir:         ${DBUS_CONSOLE_AUTH_DIR}            ")
583 message("        System bus user:          ${DBUS_USER}                        ")
584 message("        'make check' socket dir:  ${TEST_SOCKET_DIR}                  ")
585 endif (WIN32)
586 message("        Test listen address:      ${TEST_LISTEN}                      ")
587 if (MSVC)
588 message("        build timestamp:          ${DBUS_BUILD_TIMESTAMP}             ")
589 endif (MSVC)
590
591 MESSAGE(" ")
592 if (DBUS_BUILD_TESTS)
593     message("NOTE: building with unit tests increases the size of the installed library and renders it insecure.")
594 endif(DBUS_BUILD_TESTS)
595
596 if (DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERT)
597     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)")
598 endif(DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERT)
599
600 if (DBUS_GCOV_ENABLED)
601     message("NOTE: building with coverage profiling is definitely for developers only.")
602 endif(DBUS_GCOV_ENABLED)
603
604 if (DBUS_ENABLE_VERBOSE_MODE)
605     message("NOTE: building with verbose mode increases library size, may slightly increase security risk, and decreases performance.")
606 endif(DBUS_ENABLE_VERBOSE_MODE)
607
608 if(NOT DBUS_DISABLE_ASSERT)
609     message("NOTE: building with assertions increases library size and decreases performance.")
610 endif(NOT DBUS_DISABLE_ASSERT)
611
612 if (DBUS_DISABLE_CHECKS)
613     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.")
614 endif(DBUS_DISABLE_CHECKS)
615 MESSAGE(" ")
616
617 INCLUDE(modules/CPackInstallConfig.cmake)
618
619 add_custom_target(help-options
620     cmake -LH 
621     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
622 )