OSDN Git Service

サムネイルモードの実装
[gefu/Gefu.git] / Gefu.pro
1 #-------------------------------------------------
2 #
3 # Project created by QtCreator 2014-08-14T11:25:36
4 #
5 #-------------------------------------------------
6
7 QT       += core gui
8 QT       += network
9
10 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
11
12 TARGET = Gefu
13 TEMPLATE = app
14 VERSION = 0.2.1
15
16 SOURCES += main.cpp\
17     mainwindow.cpp \
18     renamesingledialog.cpp \
19     renamemultidialog.cpp \
20     operationdialog.cpp \
21     renameworker.cpp \
22     deleteworker.cpp \
23     overwritedialog.cpp \
24     copymoveworker.cpp \
25     sortdialog.cpp \
26     historydialog.cpp \
27     preferencedialog.cpp \
28     simpletextview.cpp \
29     folderview.cpp \
30     folderpanel.cpp \
31     bookmarkdialog.cpp \
32     simpleimageview.cpp \
33     abstractworker.cpp \
34     foldermodel.cpp \
35     panel.cpp \
36     preferences.cpp \
37     global.cpp \
38     win32.cpp \
39     thumbnailview.cpp \
40     thumbnaildelegate.cpp
41
42 HEADERS  += mainwindow.h \
43     renamesingledialog.h \
44     renamemultidialog.h \
45     operationdialog.h \
46     renameworker.h \
47     deleteworker.h \
48     overwritedialog.h \
49     copymoveworker.h \
50     sortdialog.h \
51     historydialog.h \
52     preferencedialog.h \
53     simpletextview.h \
54     folderview.h \
55     version.h \
56     folderpanel.h \
57     bookmarkdialog.h \
58     simpleimageview.h \
59     abstractworker.h \
60     foldermodel.h \
61     panel.h \
62     preferences.h \
63     global.h \
64     win32.h \
65     abstractview.h \
66     abstractrenamedialog.h \
67     thumbnailview.h \
68     thumbnaildelegate.h
69
70 FORMS    += mainwindow.ui \
71     renamesingledialog.ui \
72     renamemultidialog.ui \
73     operationdialog.ui \
74     overwritedialog.ui \
75     sortdialog.ui \
76     historydialog.ui \
77     preferencedialog.ui \
78     folderpanel.ui \
79     bookmarkdialog.ui \
80     panel.ui
81
82 RESOURCES += \
83     resource.qrc
84
85 OTHER_FILES += \
86     Gefu.rc \
87     README.md \
88     ReadMe.txt \
89     keybind.txt \
90     installer-full.nsi \
91     installer.nsi
92
93 macx {
94     ICON = ./images/file-manager.icns
95 }
96
97 win32 {
98     RC_FILE = Gefu.rc
99 }