File: tests.pro

package info (click to toggle)
qdjango 0.2.5-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,144 kB
  • sloc: cpp: 6,085; perl: 104; makefile: 6
file content (32 lines) | stat: -rw-r--r-- 574 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
include(../qdjango.pri)

QT -= gui
QT += script sql network testlib

TARGET = qdjango-tests

HEADERS += \
    fields.h \
    http.h \
    main.h \
    script.h \
    auth-models.h \
    auth-tests.h \
    shares-models.h \
    shares-tests.h
SOURCES += \
    fields.cpp \
    http.cpp \
    main.cpp \
    script.cpp \
    auth-models.cpp \
    auth-tests.cpp \
    shares-models.cpp \
    shares-tests.cpp

INCLUDEPATH += $$QDJANGO_INCLUDEPATH

LIBS += \
    -L../src/db $$QDJANGO_DB_LIBS \
    -L../src/http $$QDJANGO_HTTP_LIBS \
    -L../src/script $$QDJANGO_SCRIPT_LIBS