blob: 846e533c397e65e5f49bc650080c3c4ece41fb6b (
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
78
79
|
TEMPLATE = app
CONFIG += warn_on \
thread \
qt \
debug
CONFIG -= release
QT += sql
SOURCES = main.cpp \
filesystemdirproxy.cpp \
filesystemwidget.cpp \
fileview.cpp \
shemov.cpp \
filesystemfileproxy.cpp \
helper.cpp \
shemoviconprovider.cpp \
configurationdialog.cpp \
statisticsdialog.cpp \
programconfigurator.cpp \
smtreeitem.cpp \
smtreemodel.cpp \
smglobals.cpp \
archivetreeview.cpp \
seriestreewidget.cpp \
seriestreemodel.cpp \
filestreemodel.cpp \
filestreewidget.cpp \
mappingtablemodel.cpp \
mappingtablewidget.cpp \
newmoviewizard.cpp \
filepropertiesdialog.cpp \
hoverwindow.cpp \
consistencycheck.cpp \
seriesmetadatamodel.cpp \
mappingtableeditor.cpp \
smdialog.cpp \
propertiesdialog.cpp \
dbanalyzer.cpp \
mappingtreemodel.cpp \
mappingtreewidget.cpp \
newpicsdialog.cpp \
pictureswidget.cpp \
pictureviewer2.cpp
HEADERS = \
filesystemdirproxy.h \
filesystemwidget.h \
fileview.h \
shemov.h \
filesystemfileproxy.h \
helper.h \
shemoviconprovider.h \
configurationdialog.h \
statisticsdialog.h \
programconfigurator.h \
smtreeitem.h \
smtreemodel.h \
smglobals.h \
archivetreeview.h \
seriestreewidget.h \
seriestreemodel.h \
filestreemodel.h \
filestreewidget.h \
mappingtablemodel.h \
mappingtablewidget.h \
newmoviewizard.h \
filepropertiesdialog.h \
hoverwindow.h \
consistencycheck.h \
seriesmetadatamodel.h \
mappingtableeditor.h \
smdialog.h \
propertiesdialog.h \
dbanalyzer.h \
mappingtreemodel.h \
mappingtreewidget.h \
newpicsdialog.h \
pictureswidget.h \
pictureviewer2.h
LIBS += -lmagic -lXfixes -lX11
RESOURCES = shemov.qrc
|