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