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
|