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.5
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     thumbnailworker.cpp \
42     folderview_private.cpp \
43     filereadworker.cpp
44
45 HEADERS  += mainwindow.h \
46     renamesingledialog.h \
47     renamemultidialog.h \
48     operationdialog.h \
49     renameworker.h \
50     deleteworker.h \
51     overwritedialog.h \
52     copymoveworker.h \
53     sortdialog.h \
54     historydialog.h \
55     preferencedialog.h \
56     simpletextview.h \
57     folderview.h \
58     version.h \
59     folderpanel.h \
60     bookmarkdialog.h \
61     simpleimageview.h \
62     abstractworker.h \
63     foldermodel.h \
64     panel.h \
65     preferences.h \
66     global.h \
67     win32.h \
68     abstractview.h \
69     abstractrenamedialog.h \
70     thumbnailview.h \
71     thumbnaildelegate.h \
72     thumbnailworker.h \
73     folderview_private.h \
74     operationworker.h \
75     filereadworker.h
76
77 FORMS    += mainwindow.ui \
78     renamesingledialog.ui \
79     renamemultidialog.ui \
80     operationdialog.ui \
81     overwritedialog.ui \
82     sortdialog.ui \
83     historydialog.ui \
84     preferencedialog.ui \
85     folderpanel.ui \
86     bookmarkdialog.ui \
87     panel.ui
88
89 RESOURCES += \
90     resource.qrc
91
92 OTHER_FILES += \
93     Gefu.rc \
94     README.md \
95     ReadMe.txt \
96     keybind.txt \
97     installer-full.nsi \
98     installer.nsi
99
100 macx {
101     ICON = ./images/file-manager.icns
102 }
103
104 win32 {
105     RC_FILE = Gefu.rc
106 }