blob: 9cc726b265a5c87741c38abbfd9fdbd118cd22b9 (
plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# -*- Makefile -*-
TEMPLATE = app
TARGET = pracro
DEPENDPATH += . widgets
INCLUDEPATH += . widgets
RESOURCES += client.qrc
QT += core gui network xml sql
# For debugging
QMAKE_CXXFLAGS += -g -Wall -Werror
win32 {
LIBPATH += lua/lib
INCLUDEPATH += lua/include
LIBS += -llua51
DEFINES += HOST_WIN32
CONFIG += console release
}
unix {
LIBS += -llua
}
HEADERS += \
collapser.h \
formatparser.h \
lua.h \
macrowindow.h \
mainwindow.h \
netcom.h \
resumewidget.h \
widgetbuilder.h \
widgets.h \
widgets/common.h \
widgets/widget.h \
widgets/label.h \
widgets/lineedit.h \
widgets/multilist.h \
widgets/textedit.h \
widgets/button.h \
widgets/dbwidget.h \
widgets/combobox.h \
widgets/listbox.h \
widgets/frame.h \
widgets/groupbox.h \
widgets/radiobutton.h \
widgets/radiobuttons.h \
widgets/checkbox.h \
widgets/window.h
SOURCES += \
pracro.cc \
collapser.cc \
formatparser.cc \
lua.cc \
macrowindow.cc \
mainwindow.cc \
netcom.cc \
resumewidget.cc \
widgetbuilder.cc \
widgets/common.cc \
widgets/widget.cc \
widgets/label.cc \
widgets/lineedit.cc \
widgets/multilist.cc \
widgets/textedit.cc \
widgets/button.cc \
widgets/combobox.cc \
widgets/dbwidget.cc \
widgets/listbox.cc \
widgets/frame.cc \
widgets/groupbox.cc \
widgets/radiobutton.cc \
widgets/radiobuttons.cc \
widgets/checkbox.cc \
widgets/window.cc
|