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