cmake: clean up libxml2 glue
[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 if(NOT EXPAT_FOUND)
300     message(FATAL "expat not found!")
301 endif(NOT EXPAT_FOUND)
302
303 SET(XML_LIB "Expat")
304 SET(XML_LIBRARY     ${EXPAT_LIBRARIES})
305 SET(XML_INCLUDE_DIR ${EXPAT_INCLUDE_DIR})
306
307 #AC_ARG_WITH(init-scripts, AS_HELP_STRING([--with-init-scripts=[redhat]],[Style of init scripts to install]))
308 #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]))
309 #AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
310 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
311 #AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
312 #AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
313 #AC_ARG_WITH(console-owner-file, AS_HELP_STRING([--with-console-owner-file=[filename]],[file whose owner determines current console owner]))
314 #AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
315 #AC_ARG_WITH(dbus_daemondir, AS_HELP_STRING([--with-dbus-daemondir=[dirname]],[Directory for installing the DBUS daemon]))
316 # all missing or hardcoded for now
317
318 # 'hidden' ones
319 set(atomic_int OFF)
320 set(atomic_int486 OFF)
321 if(CMAKE_COMPILER_IS_GNUCC AND NOT DBUS_ENABLE_ANSI)
322     FIND_PROGRAM(UNAME_EXECUTABLE
323                     NAMES uname
324                     PATHS /bin /usr/bin /usr/local/bin c:/Programme/MSys/bin d:/Programme/MSys/bin)
325
326     if(UNAME_EXECUTABLE)
327         EXECUTE_PROCESS(COMMAND ${UNAME_EXECUTABLE} "-m"
328                         OUTPUT_VARIABLE UNAME_OUTPUT)
329
330         if("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
331             set(atomic_int ON)
332         else("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
333             if("UNAME_OUTPUT" MATCHES "^.*i?86.*$")
334                 set(atomic_int ON)
335                 set(atomic_int_486 ON)
336             endif("UNAME_OUTPUT" MATCHES "^.*i?86.*$")
337         endif("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
338     endif(UNAME_EXECUTABLE)
339 endif(CMAKE_COMPILER_IS_GNUCC AND NOT DBUS_ENABLE_ANSI)
340
341 set (DBUS_HAVE_ATOMIC_INT ${atomic_int} CACHE STRING "Some atomic integer implementation present")
342 set (DBUS_USE_ATOMIC_INT_486 ${atomic_int_486} CACHE STRING "Use atomic integer implementation for 486")
343
344 if(X11_FOUND)
345   option (DBUS_BUILD_X11 "Build with X11 autolaunch support " ON)
346 endif(X11_FOUND)
347
348 # test binary names
349 if (WIN32)
350         # Automake calls this EXEEXT, and CMake doesn't have a standard name
351         # for it; follow Automake's naming convention so we can share .in files
352         set (EXEEXT ".exe")
353 endif(WIN32)
354
355 if (MSVC_IDE)
356     if(CMAKE_BUILD_TYPE MATCHES Debug)
357                 set(IDE_BIN /Debug )
358                 message(STATUS)
359                 message(STATUS "Visual Studio: test programs will only work with 'Debug' configuration!")
360                 message(STATUS "To run tests with 'Release' configuration use -DCMAKE_BUILD_TYPE=Release")
361                 message(STATUS "Add '..\\..\\test\\data' to the command line option of the test programs")
362                 message(STATUS)
363     else(CMAKE_BUILD_TYPE MATCHES Debug)
364                 set(IDE_BIN /Release)
365                 message(STATUS)
366                 message(STATUS "Visual Studio: test programs will only work with 'Release' configuration!")
367                 message(STATUS "To run tests with 'Debug' configuration use -DCMAKE_BUILD_TYPE=Debug")
368                 message(STATUS "Add '..\\..\\test\\data' to the command line option of the test programs")
369                 message(STATUS)
370     endif(CMAKE_BUILD_TYPE MATCHES Debug)
371         set (TEST_PATH_FORCE FORCE)
372         FILE(REMOVE ${CMAKE_BINARY_DIR}/data/dbus-1/services)
373 endif (MSVC_IDE)
374
375 #### Find socket directories
376  if (NOT $ENV{TMPDIR} STREQUAL "")
377      set (DBUS_SESSION_SOCKET_DIR $ENV{TMPDIR})
378  else (NOT $ENV{TMPDIR} STREQUAL "")
379      if (NOT $ENV{TEMP} STREQUAL "")
380          set (DBUS_SESSION_SOCKET_DIR $ENV{TEMP})
381      else (NOT $ENV{TEMP} STREQUAL "")
382          if (NOT $ENV{TMP} STREQUAL "")
383              set (DBUS_SESSION_SOCKET_DIR $ENV{TMP})
384          else (NOT $ENV{TMP} STREQUAL "")
385          if (WIN32)
386              #Should never happen, both TMP and TEMP seem always set on Windows
387              message(FATAL "Could not determine a usable temporary directory")
388          else(WIN32)
389             set (DBUS_SESSION_SOCKET_DIR /tmp)
390          endif(WIN32)
391          endif (NOT $ENV{TMP} STREQUAL "")
392      endif (NOT $ENV{TEMP} STREQUAL "")
393  endif (NOT $ENV{TMPDIR} STREQUAL "")
394
395 #AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
396
397 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
398
399 #if ! test -z "$with_system_pid_file"; then
400 #   DBUS_SYSTEM_PID_FILE=$with_system_pid_file
401 #elif test x$operating_system = xredhat ; then
402 #   DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/messagebus.pid
403 #else
404 #   DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/dbus/pid
405 #fi
406 # TODO: fix redhet
407 if (WIN32)
408   # bus-test expects a non empty string
409         set (DBUS_SYSTEM_PID_FILE "/dbus-pid")
410 else (WIN32)
411         set (DBUS_SYSTEM_PID_FILE ${EXPANDED_LOCALSTATEDIR}/run/dbus/pid)
412 endif (WIN32)
413
414 #AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
415
416 #AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
417
418 if (WIN32)
419         set (DBUS_CONSOLE_AUTH_DIR "")
420 else (WIN32)
421         set (DBUS_CONSOLE_AUTH_DIR "/var/run/console/")
422 endif (WIN32)
423
424 #AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
425
426 set (DBUS_USER )
427
428 # In Autotools this has a different default on QNX, but there seems little
429 # point in replicating that here; if you're on an unusual Unix, use Autotools.
430 set (DEFAULT_MESSAGE_UNIX_FDS 1024)
431
432 # This won't work on Windows. It's not meant to - the system bus is
433 # meaningless on Windows anyway.
434 #
435 # This has to be suitable for hard-coding in client libraries as well as
436 # in the dbus-daemon's configuration, so it has to be valid to listen on
437 # and also to connect to. If this ever changes, it'll need to be split into
438 # two variables, one for the listening address and one for the connecting
439 # address.
440 set (DBUS_SYSTEM_BUS_DEFAULT_ADDRESS "unix:path=${EXPANDED_LOCALSTATEDIR}/run/dbus/system_bus_socket" CACHE STRING "system bus default address")
441
442 if (WIN32)
443   set (DBUS_SESSION_BUS_LISTEN_ADDRESS "autolaunch:" CACHE STRING "session bus default listening address")
444   set (DBUS_SESSION_BUS_CONNECT_ADDRESS "autolaunch:" CACHE STRING "session bus fallback address for clients")
445
446   set (DBUS_SYSTEM_CONFIG_FILE "etc/dbus-1/system.conf")
447   set (DBUS_SESSION_CONFIG_FILE "etc/dbus-1/session.conf")
448   # bus-test expects a non empty string
449   set (DBUS_USER "Administrator")
450 else (WIN32)
451   set (DBUS_SESSION_BUS_LISTEN_ADDRESS "unix:tmpdir=${DBUS_SESSION_SOCKET_DIR}" CACHE STRING "session bus default listening address")
452   set (DBUS_SESSION_BUS_CONNECT_ADDRESS "autolaunch:" CACHE STRING "session bus fallback address for clients")
453   set (sysconfdir "")
454   set (configdir ${sysconfdir}/dbus-1 )
455   set (DBUS_SYSTEM_CONFIG_FILE  ${configdir}/system.conf)
456   set (DBUS_SESSION_CONFIG_FILE ${configdir}/session.conf)
457   set (DBUS_USER "root")
458 endif (WIN32)
459
460 set (DBUS_DAEMON_NAME "dbus-daemon" CACHE STRING "The name of the dbus daemon executable")
461
462 ########### create config.h ###############
463
464 #include(ConfigureChecks.cmake)
465
466 # better use flags for gcc
467 if (MINGW)
468         set (HAVE_GNUC_VARARGS 1)
469 endif(MINGW)
470
471 # compiler definitions
472 add_definitions(-DHAVE_CONFIG_H=1)
473 add_definitions(${DBUS_BUS_CFLAGS})
474
475
476 if (DBUS_BUILD_TESTS)
477     # set variables used for the .in files (substituted by configure_file) in test/data:
478     set(DBUS_TEST_EXEC ${EXECUTABLE_OUTPUT_PATH}${IDE_BIN})
479     set(DBUS_TEST_DATA ${CMAKE_BINARY_DIR}/test/data)
480     set(TEST_SOCKET_DIR ${DBUS_SESSION_SOCKET_DIR} )
481     set(TEST_LAUNCH_HELPER_BINARY ${EXECUTABLE_OUTPUT_PATH}/dbus-daemon-launch-helper-test)
482     if (UNIX)
483         set (TEST_LISTEN "unix:tmpdir=${TEST_SOCKET_DIR}")
484     endif (UNIX)
485     if (WIN32)
486         set (TEST_LISTEN "tcp:host=localhost")
487     endif (WIN32)
488 endif  (DBUS_BUILD_TESTS)
489
490 set(DBUS_LIBRARIES dbus-1)
491 set(DBUS_INTERNAL_LIBRARIES dbus-internal)
492
493 # settings for building and using static internal lib
494 # important note: DBUS_INTERNAL_xxxxx_DEFINITIONS must *not* be set when building dbus-1 library
495 set (DBUS_INTERNAL_ADD_LIBRARY_OPTIONS STATIC)
496 set (DBUS_INTERNAL_LIBRARY_DEFINITIONS "-DDBUS_STATIC_BUILD")
497 set (DBUS_INTERNAL_CLIENT_DEFINITIONS "-DDBUS_STATIC_BUILD")
498
499 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h )
500
501 if (WIN32)
502 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/dbus-env.bat.cmake ${CMAKE_BINARY_DIR}/bin/dbus-env.bat )
503 install_files(/bin FILES ${CMAKE_BINARY_DIR}/bin/dbus-env.bat)
504 endif()
505
506 add_definitions(-DHAVE_CONFIG_H=1)
507
508 ########### subdirs ###############
509
510 add_subdirectory( dbus )
511 add_subdirectory( bus )
512 if (DBUS_BUILD_TESTS)
513         add_subdirectory( test )
514 endif (DBUS_BUILD_TESTS)
515 add_subdirectory( tools )
516 add_subdirectory( doc )
517
518
519 OPTION(DBUS_INSTALL_SYSTEM_LIBS "install required system libraries" OFF)
520 MESSAGE(" ")
521 MESSAGE("set -DDBUS_INSTALL_SYSTEM_LIBS=1 to install runtime libraries too")
522 MESSAGE("set DBUSDIR (environment or cmake option) to overwrite the default install directory ")
523 MESSAGE(" ")
524 MESSAGE(" ")
525 GET_FILENAME_COMPONENT(C_COMPILER ${CMAKE_C_COMPILER} NAME)
526 GET_FILENAME_COMPONENT(CXX_COMPILER ${CMAKE_CXX_COMPILER} NAME)
527
528 message("                  D-BUS ${DBUS_VERSION}                               ")
529 message("                  ===========                                         ")
530 message("                                                                      ")
531 message("        install prefix:           ${prefix}                           ")
532 message("        install exec_prefix:      ${exec_prefix}                      ")
533 message("        install libdir:           ${EXPANDED_LIBDIR}                  ")
534 message("        install bindir:           ${EXPANDED_BINDIR}                  ")
535 message("        install sysconfdir:       ${EXPANDED_SYSCONFDIR}              ")
536 #message("        install localstatedir:    ${EXPANDED_LOCALSTATEDIR}           ")
537 message("        install datadir:          ${EXPANDED_DATADIR}                 ")
538 message("        source code location:     ${DBUS_SOURCE_DIR}                  ")
539 message("        build dir:                ${CMAKE_BINARY_DIR}                 ")
540 message("        c compiler:               ${C_COMPILER}                       ")
541 message("        cflags:                   ${CMAKE_C_FLAGS}                    ")
542 message("        cflags debug:             ${CMAKE_C_FLAGS_DEBUG}              ")
543 message("        cflags release:           ${CMAKE_C_FLAGS_RELEASE}            ")
544 message("        cxx compiler:             ${CXX_COMPILER}                     ")
545 message("        cxxflags:                 ${CMAKE_CXX_FLAGS}                  ")
546 message("        cxxflags debug:           ${CMAKE_CXX_FLAGS_DEBUG}            ")
547 message("        cxxflags release:         ${CMAKE_CXX_FLAGS_RELEASE}          ")
548 message("        64-bit int:               ${DBUS_INT64_TYPE}                  ")
549 message("        32-bit int:               ${DBUS_INT32_TYPE}                  ")
550 message("        16-bit int:               ${DBUS_INT16_TYPE}                  ")
551 message("        Doxygen:                  ${DOXYGEN}                          ")
552 message("        Docbook Generator:        ${DOCBOOK_GENERATOR_NAME}           ")
553
554
555 #message("        Maintainer mode:          ${USE_MAINTAINER_MODE}              ")
556 message("        gcc coverage profiling:   ${DBUS_GCOV_ENABLED}                ")
557 message("        Building unit tests:      ${DBUS_BUILD_TESTS}                 ")
558 message("        Building verbose mode:    ${DBUS_ENABLE_VERBOSE_MODE}         ")
559 message("        Building w/o assertions:  ${DBUS_DISABLE_ASSERT}             ")
560 message("        Building w/o checks:      ${DBUS_DISABLE_CHECKS}              ")
561 message("        Building bus stats API:   ${DBUS_ENABLE_STATS}                ")
562 message("        installing system libs:   ${DBUS_INSTALL_SYSTEM_LIBS}         ")
563 #message("        Building SELinux support: ${have_selinux}                     ")
564 #message("        Building dnotify support: ${have_dnotify}                     ")
565 message("        Building Doxygen docs:    ${DBUS_ENABLE_DOXYGEN_DOCS}         ")
566 message("        Building XML docs:        ${DBUS_ENABLE_XML_DOCS}             ")
567 #message("        Gettext libs (empty OK):  ${INTLLIBS}                         ")
568 message("        Daemon executable name:   ${DBUS_DAEMON_NAME}")
569 if (WIN32)
570 message("        System bus address:       ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}  ")
571 message("        Session bus listens on:   ${DBUS_SESSION_BUS_LISTEN_ADDRESS} ")
572 message("        Session clients connect to: ${DBUS_SESSION_BUS_CONNECT_ADDRESS} ")
573 else (WIN32)
574 #message("        Init scripts style:       ${with_init_scripts}                ")
575 #message("        Abstract socket names:    ${have_abstract_sockets}            ")
576 message("        System bus socket:        ${DBUS_SYSTEM_SOCKET}               ")
577 message("        System bus address:       ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}  ")
578 message("        System bus PID file:      ${DBUS_SYSTEM_PID_FILE}             ")
579 message("        Session bus socket dir:   ${DBUS_SESSION_SOCKET_DIR}          ")
580 message("        Console auth dir:         ${DBUS_CONSOLE_AUTH_DIR}            ")
581 message("        System bus user:          ${DBUS_USER}                        ")
582 message("        'make check' socket dir:  ${TEST_SOCKET_DIR}                  ")
583 endif (WIN32)
584 message("        Test listen address:      ${TEST_LISTEN}                      ")
585 if (MSVC)
586 message("        build timestamp:          ${DBUS_BUILD_TIMESTAMP}             ")
587 endif (MSVC)
588
589 MESSAGE(" ")
590 if (DBUS_BUILD_TESTS)
591     message("NOTE: building with unit tests increases the size of the installed library and renders it insecure.")
592 endif(DBUS_BUILD_TESTS)
593
594 if (DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERT)
595     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)")
596 endif(DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERT)
597
598 if (DBUS_GCOV_ENABLED)
599     message("NOTE: building with coverage profiling is definitely for developers only.")
600 endif(DBUS_GCOV_ENABLED)
601
602 if (DBUS_ENABLE_VERBOSE_MODE)
603     message("NOTE: building with verbose mode increases library size, may slightly increase security risk, and decreases performance.")
604 endif(DBUS_ENABLE_VERBOSE_MODE)
605
606 if(NOT DBUS_DISABLE_ASSERT)
607     message("NOTE: building with assertions increases library size and decreases performance.")
608 endif(NOT DBUS_DISABLE_ASSERT)
609
610 if (DBUS_DISABLE_CHECKS)
611     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.")
612 endif(DBUS_DISABLE_CHECKS)
613 MESSAGE(" ")
614
615 INCLUDE(modules/CPackInstallConfig.cmake)
616
617 add_custom_target(help-options
618     cmake -LH 
619     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
620 )