Go to file
xiehuc 733836ea49 release 0.6.1
Signed-off-by: xiehuc <xiehuc@gmail.com>
2015-07-15 14:58:36 +08:00
cmake support cmake 2013-12-02 14:06:26 +08:00
doc@b19b0f7019 update doc reference 2015-06-05 08:56:20 +08:00
lib fix login failed when need verify code 2015-07-15 14:55:37 +08:00
python add 'make python' command 2014-08-18 09:34:53 +08:00
src rewrite login logic, clear code 2015-04-17 21:33:10 +08:00
xcode update xcode config 2015-02-25 10:38:46 +08:00
.clang-format add a new PAIR macro to replace LwqqTypeMap 2015-02-25 01:53:11 +08:00
.gitignore init version 2013-07-06 14:02:29 +08:00
.gitmodules add doc 2013-11-29 19:15:14 +08:00
.vimrc add global vim config 2015-04-18 01:28:45 +08:00
AUTHOR add readme 2014-04-14 13:02:11 +08:00
CMakeLists.txt release 0.6.1 2015-07-15 14:58:36 +08:00
ChangeLog release 0.6.1 2015-07-15 14:58:36 +08:00
README.rst release 0.4.0 2014-08-19 13:55:09 +08:00
config.h.in [async] impl add name flags and support multi compile multi impl 2015-04-20 23:06:53 +08:00
encrypt.js add two new api to help read resource 2015-02-08 00:27:34 +08:00
lwqq.pc.in add lwqq.pc.in 2014-04-07 22:48:03 +08:00

README.rst

======
lwqq
======

Introduction
==============

lwqq means light weight QQ (also Linux webqq). It provide a library for the webqq
protocol.

lwqq is designed as cross platform and also provide a Python API to support quick
development.

lwqq is currently used in many open source projects. The most well known is `pidgin-lwqq`__

__ https://github.com/xiehuc/pidgin-lwqq

lwqq is licenced under the **GPLv3** License.


Quick Build
=============

Most of lwqq's dependencies are optional. It means that you can write some own implementations
and embed it into a small applications.

A brief install guide::
   
   mkdir build;cd build
   cmake ..
   make 
   sudo make install
   make python  # create python egg install package
   easy_install python/dist/*.egg # install python bindings (optional)

You can fin more details concerning the build process in the wiki__

__ https://github.com/xiehuc/lwqq/wiki/Build-From-Source

Debian Package
=============

To create a Debian package from the source::

   mkdir build;cd build
   cmake ..
   cpack