|
Revision 701, 0.7 kB
(checked in by bellmich, 1 month ago)
|
users should test before install
|
| Line | |
|---|
| 1 |
Installation |
|---|
| 2 |
============ |
|---|
| 3 |
|
|---|
| 4 |
libsyncml is using as "build environment" CMake (http://www.cmake.org) |
|---|
| 5 |
|
|---|
| 6 |
Required packages: |
|---|
| 7 |
* glib2 - http://www.gtk.org |
|---|
| 8 |
* libxml2 - http://xmlsoft.org |
|---|
| 9 |
|
|---|
| 10 |
Optional but recommended: |
|---|
| 11 |
* wbxml2 - http://libwbxml.aymerick.com |
|---|
| 12 |
* libsoup (for HTTP transport) - http://www.gnome.org |
|---|
| 13 |
* libopenobex (for OBEX transport) - http://dev.zuckschwerdt.org/openobex |
|---|
| 14 |
|
|---|
| 15 |
Optional: |
|---|
| 16 |
* check (for Unittests) - http://check.sourceforge.net |
|---|
| 17 |
|
|---|
| 18 |
We only support/test "out of source builds", which means you have to create a |
|---|
| 19 |
separated build directory. |
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
Example: Build with Unix Makefiles |
|---|
| 23 |
================================== |
|---|
| 24 |
|
|---|
| 25 |
mkdir build |
|---|
| 26 |
cd build |
|---|
| 27 |
cmake -DCMAKE_INSTALL_PREFIX=$prefix /path/to/libsyncml/source/ |
|---|
| 28 |
make |
|---|
| 29 |
make test |
|---|
| 30 |
make install |
|---|
| 31 |
|
|---|