cosmetix
[dyskinesia.git] / src / main.pri
blob2f199842b1313bd673e29a3a1fa808c523a29169
1 QT += gui webkit
2 CONFIG += uitools
4 DEPENDPATH += $$PWD
5 INCLUDEPATH += $$PWD
7 include($$PWD/k8utils/k8utils.pri)
8 include($$PWD/k8tpl/k8tpl.pri)
9 include($$PWD/k8popups/k8popups.pri)
10 include($$PWD/k8sdbjs/k8sdb.pri)
11 include($$PWD/ghotkey/ghotkey.pri)
13 CONFIG(json_history) {
14   DEFINES += HISTORY_OK
15   DEFINES += JSON_HISTORY
16   include($$PWD/k8jshistory/k8jshistory.pri)
19 !CONFIG(json_history) {
20   CONFIG(use_leveldb) {
21     DEFINES += HISTORY_OK
22     DEFINES += LDB_HISTORY
23     include($$PWD/k8ldbhistory/k8ldbhistory.pri)
24   }
25   !CONFIG(use_leveldb) {
26     CONFIG(use_bhf) {
27       DEFINES += HISTORY_OK
28       DEFINES += BHF_HISTORY
29       include($$PWD/k8bhfhistory/k8bhfhistory.pri)
30     }
31   }
34 include($$PWD/k8history/k8history.pri)
36 DEFINES += K8JSON_INCLUDE_WRITER
37 DEFINES += K8JSON_INCLUDE_GENERATOR
38 DEFINES += K8JSON_INCLUDE_COMPLEX_GENERATOR
39 include($$PWD/k8json/k8json.pri)
42 HEADERS += \
43   $$PWD/dlogf.h \
44   $$PWD/main.h \
45   $$PWD/authwin.h \
46   $$PWD/accwin.h \
47   $$PWD/conwin.h \
48   $$PWD/pktwin.h \
49   $$PWD/joinwin.h \
50   $$PWD/chatform.h \
51   $$PWD/genkeywin.h \
52   $$PWD/settings.h \
53   $$PWD/k8webview.h \
54   $$PWD/psyccontact.h \
55   $$PWD/winutils.h \
56   $$PWD/floatwin.h \
57   $$PWD/dysversion.h \
58   $$PWD/keycmb.h \
59   $$PWD/eng_commands.h \
60   $$PWD/eng_bindings.h \
61   $$PWD/floatman.h \
62   $$PWD/chatjsapi.h \
65 SOURCES += \
66   $$PWD/dlogf.c \
67   $$PWD/main.cpp \
68   $$PWD/accwin.cpp \
69   $$PWD/conwin.cpp \
70   $$PWD/pktwin.cpp \
71   $$PWD/joinwin.cpp \
72   $$PWD/chatform.cpp \
73   $$PWD/genkeywin.cpp \
74   $$PWD/settings.cpp \
75   $$PWD/k8webview.cpp \
76   $$PWD/psyccontact.cpp \
77   $$PWD/winutils.cpp \
78   $$PWD/floatwin.cpp \
79   $$PWD/keycmb.cpp \
80   $$PWD/eng_commands.cpp \
81   $$PWD/eng_bindings.cpp \
82   $$PWD/floatman.cpp \
83   $$PWD/chatjsapi.cpp \
86 FORMS += \
87   $$PWD/ui/authwin.ui \
88   $$PWD/ui/accwin.ui \
89   $$PWD/ui/chatform.ui \
90   $$PWD/ui/console.ui \
91   $$PWD/ui/genkeywin.ui \
92   $$PWD/ui/pktform.ui \
93   $$PWD/ui/joinwin.ui \