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