Use QListWidget instead of comboboxes
[scorecard] / scorecard.pro
1 DESTDIR = bin
2 MOC_DIR = moc
3 OBJECTS_DIR = obj
4 UI_DIR = obj
5
6 QMAKE_CXXFLAGS += -Wno-return-type
7
8 CONFIG  += qt debug
9 TEMPLATE = app
10 QT      += xml
11
12 HEADERS  = \
13 src/main-window.h \
14 src/score-dialog.h \
15 src/course-dialog.h \
16 src/cell-delegate.h \
17 src/table-model.h \
18 src/xml-parser.h \
19 src/xml-dom-parser.h \
20 src/data.h \
21 src/tree-model.h \
22 src/tree-item.h \
23 src/tree-widget.h
24
25 SOURCES  = \
26 src/main.cpp \
27 src/main-window.cpp \
28 src/score-dialog.cpp \
29 src/course-dialog.cpp \
30 src/cell-delegate.cpp \
31 src/table-model.cpp \
32 src/xml-parser.cpp \
33 src/xml-dom-parser.cpp \
34 src/data.cpp \
35 src/tree-model.cpp \
36 src/tree-item.cpp \
37 src/tree-widget.cpp