-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImageViewer.pro
54 lines (46 loc) · 1.25 KB
/
ImageViewer.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
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
# CONFIG += c++11 console
# CONFIG -= app_bundle
QMAKE_LFLAGS += -static
SOURCES += \
src/Application.cpp \
src/ConfigField.cpp \
src/ConfigItem.cpp \
src/IconButton.cpp \
src/Image.cpp \
src/ImageLoader.cpp \
src/Layout.cpp \
src/main.cpp \
src/widgets/ColorButton.cpp \
src/widgets/ColorDialog.cpp \
src/widgets/GuiPage.cpp \
src/widgets/ImagePage.cpp \
src/widgets/MainWidget.cpp \
src/widgets/SettingsWidget.cpp \
src/widgets/WinWindow.cpp \
src/widgets/WindowPage.cpp
HEADERS += \
src/Application.hpp \
src/ConfigField.hpp \
src/ConfigItem.hpp \
src/IconButton.hpp \
src/Image.hpp \
src/ImageLoader.hpp \
src/Layout.hpp \
src/Math.hpp \
src/widgets/ColorButton.hpp \
src/widgets/ColorDialog.hpp \
src/widgets/GuiPage.hpp \
src/widgets/ImagePage.hpp \
src/widgets/MainWidget.hpp \
src/widgets/SettingsWidget.hpp \
src/widgets/WinWindow.hpp \
src/widgets/WindowPage.hpp
RESOURCES += \
res.qrc
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target