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 "1")
6 set (VERSION_RELEASE "1")
7 set (VERSION_PATCH "2")
9 set (VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}-${VERSION_PATCH}" )
11 set (VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}" )
16 # we need to be up to date
17 CMAKE_MINIMUM_REQUIRED(VERSION 2.4.4 FATAL_ERROR)
19 # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
20 set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/modules")
22 #enable building of shared library
23 SET(BUILD_SHARED_LIBS ON)
29 # search for required packages
31 # include local header first to avoid using old installed header
32 set (CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH} ${CMAKE_SOURCE_DIR}/..)
34 find_package(KDEWIN_Packager)
35 find_package(LibIconv)
37 addExplorerWrapper(${PACKAGE})
40 find_package(LibExpat)
44 INCLUDE(ConfigureChecks.cmake)
46 # @TODO: how to remove last dir from ${CMAKE_SOURCE_DIR} ?
47 SET(DBUS_SOURCE_DIR ${CMAKE_SOURCE_DIR}/..)
49 # make some more macros available
50 include (MacroLibrary)
53 set(DBUS_VERBOSE_C_S 1 CACHE TYPE STRING FORCE)
54 set(DBUS_VERBOSE_C_S 1)
58 # controll folders in msvc projects
59 include(ProjectSourceGroup)
61 #set(GROUP_CODE split) #cmake default
64 ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE)
67 # Use the highest warning level
69 set(WALL 1 CACHE TYPE STRING FORCE)
70 set(CMAKE_CXX_WARNING_LEVEL 4 CACHE TYPE STRING FORCE)
72 if(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
73 STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
74 else(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
75 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
76 endif(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
78 if(CMAKE_C_FLAGS MATCHES "/W[0-4]")
79 STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
80 else(CMAKE_C_FLAGS MATCHES "/W[0-4]")
81 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W4")
82 endif(CMAKE_C_FLAGS MATCHES "/W[0-4]")
84 set(CMAKE_CXX_WARNING_LEVEL 3 CACHE TYPE STRING FORCE)
87 SET(MSVC_W_ERROR " /we4028 /we4013 /we4133 /we4047 /we4031 /we4002 /we4003 /we4114")
88 SET(MSVC_W_DISABLE " /wd4127 /wd4090 /wd4101 /wd4244")
90 SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /FIconfig.h ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
91 SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /FIconfig.h ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
94 if(CMAKE_BUILD_TYPE STREQUAL "Debug")
95 # used by executables, CMAKE_DEBUG_POSTFIX does not handle this case
96 #set (CMAKE_EXE_POSTFIX "d")
97 #set (CMAKE_DEBUG_POSTFIX "d")
98 endif(CMAKE_BUILD_TYPE STREQUAL "Debug")
100 #########################################################################
104 # cmake ..\trunk\cmake -Dwince=1 -Dwcelibcex=c:\wcelibcex
106 # change configuration in Visual Studio to 'Pocket PC 2003 (ARMV4)'
109 project(${PACKAGE}-wince)
110 # don't forget parameters
111 set(wince 1 CACHE TYPE STRING FORCE)
112 set(wcelibcex ${wcelibcex} CACHE TYPE STRING FORCE)
114 include_directories(${wcelibcex}/include/wcelibcex ${wcelibcex}/src)
120 -DWIN32_PLATFORM_PSPC
124 -DPOCKETPC2003_UI_MODEL
130 -DWIN32_PLATFORM_PSPC=0x420
140 set(CMAKE_CXX_STANDARD_LIBRARIES "coredll.lib corelibc.lib ole32.lib oleaut32.lib uuid.lib commctrl.lib ws2.lib")
142 set(CMAKE_SHARED_LINKER_FLAGS "/subsystem:windowsce,4.20 /machine:THUMB")
145 #########################################################################
150 #########################################################################
151 # Disallow in-source build
152 #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.")
154 # ... and warn in case of an earlier in-source build
155 #set(generatedFileInSourceDir EXISTS ${dbus_SOURCE_DIR}/config.h)
156 #if(${generatedFileInSourceDir})
157 # message(STATUS "config.h exists in your source directory.")
158 #endif(${generatedFileInSourceDir})
159 #########################################################################
162 set (LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
163 else (WIN32 OR CYGWIN)
164 set (LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib)
165 endif (WIN32 OR CYGWIN)
167 set (EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
169 # for including config.h and for includes like <dir/foo.h>
170 include_directories( ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} )
171 include_directories( ${CMAKE_INCLUDE_PATH} )
173 # linker search directories
174 link_directories(${DBUS_LIB_DIR} ${LIBRARY_OUTPUT_PATH} )
175 include_directories( ${CMAKE_LIBRARY_PATH} )
182 ########### basic vars ###############
185 set(DBUS_INSTALL_DIR "${DBUSDIR}" CACHE TYPE STRING)
187 set(DBUS_INSTALL_DIR "$ENV{DBUSDIR}" CACHE TYPE STRING)
190 if (NOT DBUS_INSTALL_DIR)
191 set(DBUS_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}" CACHE TYPE STRING)
192 endif (NOT DBUS_INSTALL_DIR)
194 # TODO: setting EXPANDED_... has nothing to do with DBUS_INSTALL_SYSTEM_LIBS
195 if (DBUS_INSTALL_SYSTEM_LIBS)
196 set(prefix ${DBUS_INSTALL_DIR})
197 set(exec_prefix ${prefix})
198 set(EXPANDED_LIBDIR ${DBUS_INSTALL_DIR}/lib)
199 set(EXPANDED_INCLUDEDIR ${DBUS_INSTALL_DIR}/include)
200 set(EXPANDED_BINDIR ${DBUS_INSTALL_DIR}/bin)
201 set(EXPANDED_SYSCONFDIR ${DBUS_INSTALL_DIR}/etc)
202 set(EXPANDED_DATADIR ${DBUS_INSTALL_DIR}/data)
203 set(DBUS_BINDIR ${EXPANDED_BINDIR})
204 set(DBUS_MACHINE_UUID_FILE ${DBUS_INSTALL_DIR}/lib/dbus/machine-id)
205 else (DBUS_INSTALL_SYSTEM_LIBS)
206 set(EXPANDED_INCLUDEDIR ${CMAKE_SOURCE_DIR}/include)
207 set(EXPANDED_DATADIR ${CMAKE_BINARY_DIR}/test/data)
209 set(EXPANDED_BINDIR ${CMAKE_BINARY_DIR}/bin/debug)
211 set(EXPANDED_BINDIR ${CMAKE_BINARY_DIR}/bin)
213 set(DBUS_BINDIR ${EXPANDED_BINDIR})
214 set(DBUS_MACHINE_UUID_FILE ${CMAKE_BINARY_DIR}/lib/dbus/machine-id)
215 endif (DBUS_INSTALL_SYSTEM_LIBS)
217 set (DBUS_DAEMONDIR ${EXPANDED_BINDIR})
219 ########### command line options ###############
220 # TODO: take check from configure.in
222 #AC_ARG_ENABLE(tests, AS_HELP_STRING([--enable-tests],[enable unit test code]),enable_tests=$enableval,enable_tests=$USE_MAINTAINER_MODE)
223 OPTION(DBUS_BUILD_TESTS "enable unit test code" ON)
224 if (DBUS_BUILD_TESTS)
225 if(NOT MSVC AND NOT CMAKE_BUILD_TYPE MATCHES Release)
227 endif(NOT MSVC AND NOT CMAKE_BUILD_TYPE MATCHES Release)
228 endif (DBUS_BUILD_TESTS)
230 # win32 dbus service support - this support is not complete
231 OPTION(DBUS_SERVICE "enable dbus service installer" OFF)
233 #AC_ARG_ENABLE(ansi, AS_HELP_STRING([--enable-ansi],[enable -ansi -pedantic gcc flags]),enable_ansi=$enableval,enable_ansi=no)
234 OPTION(DBUS_ENABLE_ANSI "enable -ansi -pedantic gcc flags" OFF)
237 add_definitions(-ansi -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE -pedantic)
239 add_definitions(-Za -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE -W4)
241 endif(DBUS_ENABLE_ANSI)
243 #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)
244 OPTION(DBUS_ENABLE_VERBOSE_MODE "support verbose debug mode" ON)
246 #AC_ARG_ENABLE(asserts, AS_HELP_STRING([--enable-asserts],[include assertion checks]),enable_asserts=$enableval,enable_asserts=$USE_MAINTAINER_MODE)
247 OPTION(DBUS_DISABLE_ASSERTS "Disable assertion checking" OFF)
249 #AC_ARG_ENABLE(checks, AS_HELP_STRING([--enable-checks],[include sanity checks on public API]),enable_checks=$enableval,enable_checks=yes)
250 OPTION(DBUS_DISABLE_CHECKS "Disable public API sanity checking" OFF)
252 #AC_ARG_ENABLE(gcov, AS_HELP_STRING([--enable-gcov],[compile with coverage profiling instrumentation (gcc only)]),enable_gcov=$enableval,enable_gcov=no)
253 OPTION(DBUS_GCOV_ENABLED "compile with coverage profiling instrumentation (gcc only)" OFF)
254 if(DBUS_GCOV_ENABLED)
256 add_definitions(-fprofile-arcs -ftest-coverage)
258 ## remove optimization
259 # CFLAGS=`echo "$CFLAGS" | sed -e 's/-O[0-9]*//g'`
261 endif(DBUS_GCOV_ENABLED)
263 #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)
264 #abstract sockets missing
266 #AC_ARG_ENABLE(selinux, AS_HELP_STRING([--enable-selinux],[build with SELinux support]),enable_selinux=$enableval,enable_selinux=auto)
269 #AC_ARG_ENABLE(dnotify, AS_HELP_STRING([--enable-dnotify],[build with dnotify support (linux only)]),enable_dnotify=$enableval,enable_dnotify=auto)
270 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
271 OPTION(DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX "build with dnotify support (linux only)" ON) # add a check !
272 endif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
274 #AC_ARG_ENABLE(kqueue, AS_HELP_STRING([--enable-kqueue],[build with kqueue support (FreeBSD only)]),enable_kqueue=$enableval,enable_kqueue=auto)
277 #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)
278 STRING(TOUPPER ${CMAKE_SYSTEM_NAME} sysname)
279 if("${sysname}" MATCHES ".*SOLARIS.*")
280 OPTION(HAVE_CONSOLE_OWNER_FILE "enable console owner file (solaris only)" ON)
281 if(HAVE_CONSOLE_OWNER_FILE)
282 SET(DBUS_CONSOLE_OWNER_FILE "/dev/console" CACHE STRING "Directory to check for console ownerhip")
283 endif(HAVE_CONSOLE_OWNER_FILE)
284 endif("${sysname}" MATCHES ".*SOLARIS.*")
286 #AC_ARG_WITH(xml, AS_HELP_STRING([--with-xml=[libxml/expat]],[XML library to use]))
287 if(NOT LIBXML2_FOUND AND NOT LIBEXPAT_FOUND)
288 message(FATAL "Neither expat nor libxml2 found!")
289 endif(NOT LIBXML2_FOUND AND NOT LIBEXPAT_FOUND)
292 OPTION(DBUS_USE_EXPAT "Use expat (== ON) or libxml2 (==OFF)" ON)
294 OPTION(DBUS_USE_EXPAT "Use expat (== ON) or libxml2 (==OFF)" OFF)
295 endif(LIBEXPAT_FOUND)
299 SET(XML_LIBRARY ${LIBEXPAT_LIBRARIES})
300 SET(XML_INCLUDE_DIR ${LIBEXPAT_INCLUDE_DIR})
302 SET(XML_LIB "LibXML2")
303 SET(XML_LIBRARY ${LIBXML2_LIBRARIES})
304 SET(XML_INCLUDE_DIR ${LIBXML2_INCLUDE_DIR})
305 endif(DBUS_USE_EXPAT)
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
321 set(atomic_int486 OFF)
322 if(CMAKE_COMPILER_IS_GNUCC AND NOT DBUS_ENABLE_ANSI)
323 FIND_PROGRAM(UNAME_EXECUTABLE
325 PATHS /bin /usr/bin /usr/local/bin c:/Programme/MSys/bin d:/Programme/MSys/bin)
328 EXECUTE_PROCESS(COMMAND ${UNAME_EXECUTABLE} "-m"
329 OUTPUT_VARIABLE UNAME_OUTPUT)
331 if("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
333 else("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
334 if("UNAME_OUTPUT" MATCHES "^.*i?86.*$")
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)
342 OPTION(DBUS_HAVE_ATOMIC_INT "Some atomic integer implementation present" ${atomic_int})
343 OPTION(DBUS_USE_ATOMIC_INT_486 "Use atomic integer implementation for 486" ${atomic_int_486})
346 OPTION(DBUS_BUILD_X11 "Build X11-dependent code " ON)
354 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")
355 set(TEST_SERVICE_BINARY ${CMAKE_BINARY_DIR}/bin/test-service${EXT} CACHE STRING "Full path to test file test/test-service in builddir")
356 set(TEST_SHELL_SERVICE_BINARY ${CMAKE_BINARY_DIR}/bin/test-shell-service${EXT} CACHE STRING "Full path to test file test/test-shell-service in builddir")
357 set(TEST_EXIT_BINARY ${CMAKE_BINARY_DIR}/bin/test-exit${EXT} CACHE STRING "Full path to test file test/test-exit in builddir")
358 set(TEST_SEGFAULT_BINARY ${CMAKE_BINARY_DIR}/bin/test-segfault${EXT} CACHE STRING "Full path to test file test/test-segfault in builddir")
359 set(TEST_SLEEP_FOREVER_BINARY ${CMAKE_BINARY_DIR}/bin/test-sleep-forever${EXT} CACHE STRING "Full path to test file test/test-sleep-forever in builddir")
361 #### Find socket directories
363 if (NOT $ENV{TMPDIR} STREQUAL "")
364 set (DBUS_SESSION_SOCKET_DIR $ENV{TMPDIR})
365 else (NOT $ENV{TMPDIR} STREQUAL "")
366 if (NOT $ENV{TEMP} STREQUAL "")
367 set (DBUS_SESSION_SOCKET_DIR $ENV{TEMP})
368 else (NOT $ENV{TEMP} STREQUAL "")
369 if (NOT $ENV{TMP} STREQUAL "")
370 set (DBUS_SESSION_SOCKET_DIR $ENV{TMP})
371 else (NOT $ENV{TMP} STREQUAL "")
372 set (DBUS_SESSION_SOCKET_DIR /tmp)
373 endif (NOT $ENV{TMP} STREQUAL "")
374 endif (NOT $ENV{TEMP} STREQUAL "")
375 endif (NOT $ENV{TMPDIR} STREQUAL "")
378 #AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
380 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
382 #if ! test -z "$with_system_pid_file"; then
383 # DBUS_SYSTEM_PID_FILE=$with_system_pid_file
384 #elif test x$operating_system = xredhat ; then
385 # DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/messagebus.pid
387 # DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/dbus/pid
391 # bus-test expects a non empty string
392 set (DBUS_SYSTEM_PID_FILE "/dbus-pid")
394 set (DBUS_SYSTEM_PID_FILE ${EXPANDED_LOCALSTATEDIR}/run/dbus/pid)
397 #AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
399 #AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
402 set (DBUS_CONSOLE_AUTH_DIR "")
404 set (DBUS_CONSOLE_AUTH_DIR "/var/run/console/")
407 #AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
413 set (DBUS_SESSION_BUS_DEFAULT_ADDRESS "tcp:host=localhost,port=12434")
414 set (DBUS_SYSTEM_BUS_DEFAULT_ADDRESS "tcp:host=localhost,port=12434")
415 set (DBUS_SYSTEM_CONFIG_FILE "etc/system.conf")
416 set (DBUS_SESSION_CONFIG_FILE "etc/session.conf")
417 # bus-test expects a non empty string
418 set (DBUS_USER "Administrator")
419 set (DBUS_DATADIR "data")
421 set (DBUS_SYSTEM_BUS_DEFAULT_ADDRESS unix:tmpdir=)
422 set (DBUS_SESSION_BUS_DEFAULT_ADDRESS unix:path=${DBUS_SESSION_SOCKET_DIR})
424 set (configdir ${sysconfdir}/dbus-1 )
425 set (DBUS_SYSTEM_CONFIG_FILE ${configdir}/system.conf)
426 set (DBUS_SESSION_CONFIG_FILE ${configdir}/session.conf)
427 set (DBUS_USER "root")
428 set (DBUS_DATADIR ${EXPANDED_DATADIR})
431 set (DAEMON_NAME dbus-daemon)
433 ########### create config.h ###############
435 #include(ConfigureChecks.cmake)
437 # better use flags for gcc
439 set (HAVE_GNUC_VARARGS 1)
442 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h )
443 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/dbus-env.bat.cmake ${CMAKE_BINARY_DIR}/bin/dbus-env.bat )
444 install_files(/bin FILES ${CMAKE_BINARY_DIR}/bin/dbus-env.bat)
446 # compiler definitions
447 add_definitions(-DHAVE_CONFIG_H=1)
448 add_definitions(${DBUS_BUS_CFLAGS} -DDBUS_API_SUBJECT_TO_CHANGE)
451 ########### subdirs ###############
453 add_subdirectory( dbus )
454 add_subdirectory( bus )
455 if (DBUS_BUILD_TESTS)
456 add_subdirectory( test )
457 endif (DBUS_BUILD_TESTS)
458 add_subdirectory( tools )
459 add_subdirectory( doc )
462 OPTION(DBUS_INSTALL_SYSTEM_LIBS "install required system libraries" OFF)
464 MESSAGE("set -DDBUS_INSTALL_SYSTEM_LIBS=1 to install runtime libraries too")
465 MESSAGE("set DBUSDIR (environment or cmake option) to overwrite the default install directory ")
468 GET_FILENAME_COMPONENT(C_COMPILER ${CMAKE_C_COMPILER} NAME)
469 GET_FILENAME_COMPONENT(CXX_COMPILER ${CMAKE_CXX_COMPILER} NAME)
471 message(" D-BUS ${VERSION} ")
472 message(" ========== ")
474 message(" prefix: ${prefix} ")
475 message(" exec_prefix: ${exec_prefix} ")
476 message(" libdir: ${EXPANDED_LIBDIR} ")
477 message(" bindir: ${EXPANDED_BINDIR} ")
478 message(" sysconfdir: ${EXPANDED_SYSCONFDIR} ")
479 message(" localstatedir: ${EXPANDED_LOCALSTATEDIR} ")
480 message(" datadir: ${EXPANDED_DATADIR} ")
481 message(" source code location: ${DBUS_SOURCE_DIR} ")
482 message(" c compiler: ${C_COMPILER} ")
483 message(" cflags: ${CMAKE_C_FLAGS} ")
484 message(" cflags debug: ${CMAKE_C_FLAGS_DEBUG} ")
485 message(" cflags release: ${CMAKE_C_FLAGS_RELEASE} ")
486 message(" cxx compiler: ${CXX_COMPILER} ")
487 message(" cxxflags: ${CMAKE_CXX_FLAGS} ")
488 message(" cxxflags debug: ${CMAKE_CXX_FLAGS_DEBUG} ")
489 message(" cxxflags release: ${CMAKE_CXX_FLAGS_RELEASE} ")
490 message(" 64-bit int: ${DBUS_INT64_TYPE} ")
491 message(" 32-bit int: ${DBUS_INT32_TYPE} ")
492 message(" 16-bit int: ${DBUS_INT16_TYPE} ")
493 message(" Doxygen: ${DOXYGEN} ")
494 message(" xmlto: ${XMLTO} ")
497 #message(" Maintainer mode: ${USE_MAINTAINER_MODE} ")
498 message(" gcc coverage profiling: ${DBUS_GCOV_ENABLED} ")
499 message(" Building unit tests: ${DBUS_BUILD_TESTS} ")
500 message(" Building verbose mode: ${DBUS_ENABLE_VERBOSE_MODE} ")
501 message(" Building w/o assertions: ${DBUS_DISABLE_ASSERTS} ")
502 message(" Building w/o checks: ${DBUS_DISABLE_CHECKS} ")
503 message(" installing system libs: ${DBUS_INSTALL_SYSTEM_LIBS} ")
504 #message(" Building SELinux support: ${have_selinux} ")
505 #message(" Building dnotify support: ${have_dnotify} ")
506 message(" Building Doxygen docs: ${DBUS_ENABLE_DOXYGEN_DOCS} ")
507 #message(" Building XML docs: ${enable_xml_docs} ")
508 #message(" Gettext libs (empty OK): ${INTLLIBS} ")
509 message(" Using XML parser: ${XML_LIB} ")
511 message(" System bus address: ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS} ")
512 message(" Session bus address: ${DBUS_SESSION_BUS_DEFAULT_ADDRESS} ")
514 #message(" Init scripts style: ${with_init_scripts} ")
515 #message(" Abstract socket names: ${have_abstract_sockets} ")
516 message(" System bus socket: ${DBUS_SYSTEM_SOCKET} ")
517 message(" System bus address: ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS} ")
518 message(" System bus PID file: ${DBUS_SYSTEM_PID_FILE} ")
519 message(" Session bus socket dir: ${DBUS_SESSION_SOCKET_DIR} ")
520 message(" Console auth dir: ${DBUS_CONSOLE_AUTH_DIR} ")
521 message(" System bus user: ${DBUS_USER} ")
522 message(" 'make check' socket dir: ${TEST_SOCKET_DIR} ")
525 if (DBUS_BUILD_TESTS)
526 message("NOTE: building with unit tests increases the size of the installed library and renders it insecure.")
527 endif(DBUS_BUILD_TESTS)
529 if (DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERTS)
530 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)")
531 endif(DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERTS)
533 if (DBUS_GCOV_ENABLED)
534 message("NOTE: building with coverage profiling is definitely for developers only.")
535 endif(DBUS_GCOV_ENABLED)
537 if (DBUS_ENABLE_VERBOSE_MODE)
538 message("NOTE: building with verbose mode increases library size, may slightly increase security risk, and decreases performance.")
539 endif(DBUS_ENABLE_VERBOSE_MODE)
541 if(NOT DBUS_DISABLE_ASSERTS)
542 message("NOTE: building with assertions increases library size and decreases performance.")
543 endif(NOT DBUS_DISABLE_ASSERTS)
545 if (DBUS_DISABLE_CHECKS)
546 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.")
547 endif(DBUS_DISABLE_CHECKS)
550 INCLUDE(modules/CPackInstallConfig.cmake)
552 if (KDEWIN_PACKAGER_FOUND)
553 KDEWIN_PACKAGER(${PACKAGE} ${VERSION} "ipc library" "")
554 endif (KDEWIN_PACKAGER_FOUND)