README

DESCRIPTION:
Kontakter is an easy to use address book with advance search functionality and a very intuitive user interface. The contacts are stored in a SQLite database and can be synchronized over the network with a central database provided by kontakter's server.
This software is powered by giowisys <http://www.giowisys.com>

LICENSE:
Kontakter is released under the GNU General Public License version 3.
Kontakter uses some icons which are copyrighted by different authors. See the LICENSE.txt located in the src/client/icons/ directory for more details.

CONTRIBUTE:
Feel free to contribute! We need more developers, translators, designers and packagers.
Join the giowisys' open source team on launchpad: https://launchpad.net/kontakter

COMPILE INSTRUCTIONS:

1. Linux/Other
2. Mac OS X
3. Windows
_____________________________________________________________________________

Linux/Other:

compile:
qmake
make
    
run:
- client
    cd src/client/
    ./client

- server
    cd src/server/
    ./server
_____________________________________________________________________________

Mac OS X:

compile:
qmake -spec macx-g++
make
    
run:
- client
    cd src/client/
    open ./client.app

- server
    cd src/server/
    open ./server.app
_____________________________________________________________________________

Windows:

compile:
qmake
make
    
run:
- client
    cd src/client/release
    client.exe

- server
    cd src/server/release
    server.exe
_____________________________________________________________________________

