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