A simple, lightweight C library for writing XMPP clients
C C++ Shell
Switch branches/tags
Nothing to show
Clone or download
Pull request Compare This branch is 51 commits ahead, 48 commits behind metajack:master.
carview.php?tsp= Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
carview.php?tsp= docs
carview.php?tsp= examples
carview.php?tsp= expat @ adf19a3
carview.php?tsp= src
carview.php?tsp= tests
carview.php?tsp= vs2008
carview.php?tsp= .gitignore
carview.php?tsp= .gitmodules
carview.php?tsp= CHANGES.txt
carview.php?tsp= Doxyfile
carview.php?tsp= GPL-LICENSE.txt
carview.php?tsp= LICENSE.txt
carview.php?tsp= MIT-LICENSE.txt
carview.php?tsp= Makefile.am
carview.php?tsp= README.txt
carview.php?tsp= bootstrap.sh
carview.php?tsp= configure.ac
carview.php?tsp= libstrophe.pc.in
carview.php?tsp= strophe.h
carview.php?tsp= strophepp.h

README.txt

This is strophe, our XMPP client library.
Our goals are:
    * usable quickly
    * well documented
    * reliable
== Build Instructions ==
We use the 'scons' tool to build the library, unit tests, 
documentation and examples. You'll need to obtain a copy
from https://www.scons.org/ or from your system distributor.
Once scons is installed, invoke 'scons' in the top-level
directory to build the library. This will create a static
library (also in the top-level) directory which can be
linked into other programs. The public api is defined
in <strophe.h> which is also in the top-level directory.
Invoke 'scons test' in the top-level directory to execute
the unit and self tests.
The examples/ directory contains some examples of how to
use the library; these may be helpful in addition to the
API documentation in doc/.
== Requirements ==
Libstrophe requires libresolv on UNIX systems. Make sure you include -lresolv
if you are compiling by hand.
It also uses expat for XML processing, but a current copy is included in the
expat/ directory of the SVN checkout