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