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