1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
/**
* \mainpage ofono-qt - Qt Bindings to Cellular Services
*
* \section intro Introduction
*
* ofono-qt is a high-level Qt binding to oFono cellular services provided via DBus
*
* Development is done in the Git repository <a
* href="http://meego.gitorious.org/meego-cellular/ofono-qt">here</a>.
*
* \section building Building
*
* Building ofono-qt requires:
* \li Qt, including QtDBus
* \li qmake
*
* After installing all dependencies, run:
*
* \verbatim
$ qmake
$ make
$ make install \endverbatim
*
* \section running Running
*
* In order to run ofono-qt, you need a working
* installation of ofono daemon. This is the backend with which the
* ofono-qt bindings communicate.
*
* In order to set up ofono, you will need a working PhoNet stack and
* a device connected via USB or a running phonesim modem simulator.
*
* More information:
* http://git.kernel.org/?p=network/ofono/phonesim.git;a=blob;f=HACKING;hb=HEAD
*
*/
|