forked from yuezhao/ezviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EzViewer.pro
77 lines (67 loc) · 1.67 KB
/
EzViewer.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
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
TEMPLATE = app
TARGET = EzViewer
QT += svg xml
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
DEPENDPATH += . tools ui 3rdparty
INCLUDEPATH += . tools ui 3rdparty
# DEFINES += TESTING_RAW
contains(DEFINES, TESTING_RAW) {
INCLUDEPATH += ../qtimageformats/LibRaw-0.15.0-Beta4/libraw/
LIBS += -L"../qtimageformats/LibRaw-build-desktop-Release/buildfiles/release-x86" -lraw
}
HEADERS = global.h \
config.h \
imageviewer.h \
mainwindow.h \
imagewrapper.h \
imagefactory.h \
picmanager.h \
settingdialog.h \
ui/contralbar.h \
ui/commonsetting.h \
ui/shortcutsetting.h \
tools/floatframe.h \
tools/fileassoc.h \
tools/osrelated.h \
tools/toolkit.h \
tools/tooltip.h \
tools/action.h \
tools/actionmanager.h \
tools/velocitytracker.h \
3rdparty/qxmlputget.h \
3rdparty/exif.h \
tools/imageheader.h
SOURCES = main.cpp \
config.cpp \
imageviewer.cpp \
mainwindow.cpp \
imagewrapper.cpp \
imagefactory.cpp \
picmanager.cpp \
settingdialog.cpp \
ui/contralbar.cpp \
ui/commonsetting.cpp \
ui/shortcutsetting.cpp \
tools/floatframe.cpp \
tools/fileassoc.cpp \
tools/osrelated.cpp \
tools/toolkit.cpp \
tools/tooltip.cpp \
tools/actionmanager.cpp \
tools/velocitytracker.cpp \
3rdparty/qxmlputget.cpp \
3rdparty/exif.cpp \
tools/imageheader.cpp \
3rdparty/jpgqguess.cpp
TRANSLATIONS += res/EzViewer_zh_CN.ts
RESOURCES += res/res.qrc
FORMS += ui/contralbar.ui \
ui/commonsetting.ui \
ui/shortcutsetting.ui
win32:RC_FILE += win.rc
OTHER_FILES += $$RC_FILE \
log.txt \
TODO.txt \
ReadMe.txt \
COPYING \
README.md