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