File: README.md

package info (click to toggle)
qdjango 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 908 kB
  • ctags: 959
  • sloc: cpp: 8,233; python: 51; sh: 32; makefile: 13
file content (52 lines) | stat: -rw-r--r-- 1,388 bytes parent folder | download
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
QDjango - a Qt-based C++ web framework  
Copyright (c) 2010-2014 Jeremy Lainé

[![Build Status](https://travis-ci.org/jlaine/qdjango.png)](https://travis-ci.org/jlaine/qdjango)

About
=====

_QDjango_ is a web framework written in C++ and built on top of the Qt library.
Where possible it tries to follow django's API, hence its name.

It is released under the terms of the GNU Lesser General Public License, version 2.1 or later.

To learn more about _QDjango_, please read [the online documentation](http://doc.qdjango.org/).

Requirements
============

QDjango builds and is auto-tested both with Qt 4 and Qt 5.

Qt 4 on Debian:

    sudo apt-get install libqt4-dev

Qt 5 on Debian:

    sudo apt-get install qtbase5-dev qtscript5-dev

Qt 4 on Mac OS X:

    sudo port install qt4-mac

Building QDjango
================

    mkdir build
    cd build
    qmake ..
    make

You can pass the following arguments to qmake:

    PREFIX=<prefix>                 to change the install prefix
                                    default:
                                        unix:  /usr/local on unix
                                        other: $$[QT_INSTALL_PREFIX]
    QDJANGO_LIBRARY_TYPE=staticlib  to build a static version of QDjango

Mailing list
============

If you wish to discuss QDjango, you are welcome to join the [QDjango group](http://groups.google.com/group/qdjango).