clean up credentials on OOM in process_config_first_time_only
[platform/upstream/dbus.git] / cmake / readme-cmake.txt
1 This directory contains configuration files for the cmake build system 
2
3 Requirements 
4 ------------
5 - cmake version >= 2.4.4 see http://www.cmake.org 
6 - installed libxml2 or libexpat 
7
8 Building 
9 --------
10
11 unix
12 1. install cmake and libxml or libexpat 
13 2. get dbus sources 
14 3. mkdir dbus-build 
15 4. cd dbus-build 
16 5. cmake <dbus-src-root>/cmake or cmake -DDBUS_USE_EXPAT=on <dbus-src-root>/cmake in case libexpat should de used
17 5. make 
18 6. make install
19
20 win32-mingw
21 1. install cmake and libxml or libexpat in <ProgramDir>\gnuwin32
22 2. get dbus sources 
23 3. mkdir dbus-build 
24 4. cd dbus-build 
25 5. cmake -G "MinGW Makefiles" <dbus-src-root>/cmake
26 6. make 
27 7. make install
28
29 win32-msvc
30 1. install cmake and libxml or libexpat in <ProgramDir>\gnuwin32
31 2. get dbus sources 
32 3. mkdir dbus-build 
33 4. cd dbus-build 
34 5. cmake -G <msvc available target, see cmake --help for a list> <dbus-src-root>/cmake
35 6. make 
36 7. make install
37
38 A list of all available build options could be find in the file ../README.
39