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