-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshotwin.pro
40 lines (33 loc) · 1.04 KB
/
shotwin.pro
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
CONFIG += c++14
QT += widgets sql quickwidgets
DEFINES += "GIT_VERSION=\\\"lol\\\""
SOURCES = main.cpp \
mainwindow.cpp \
models/datefilteredeventmodel.cpp \
models/eventitem.cpp \
models/eventmodel.cpp \
models/eventortagfilteredphotomodel.cpp \
models/photoitem.cpp \
models/photomodel.cpp \
models/tagmodel.cpp \
models/treeproxymodel.cpp \
settingsdialog.cpp \
shotwin.cpp \
thumbnailprovider.cpp
INCLUDEPATH += models
RESOURCES = resources.qrc
FORMS = mainwindow.ui \
settingsdialog.ui
HEADERS = mainwindow.h \
models/datefilteredeventmodel.h \
models/eventitem.h \
models/eventmodel.h \
models/eventortagfilteredphotomodel.h \
models/filterflattenproxymodel.h \
models/photoitem.h \
models/photomodel.h \
models/tagmodel.h \
models/treeproxymodel.h \
settingsdialog.h \
shotwin.h \
thumbnailprovider.h