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
9 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
10
11 TARGET = Gefu
12 TEMPLATE = app
13
14
15 SOURCES += main.cpp\
16         mainwindow.cpp \
17     folderpanel.cpp \
18     renamesingledialog.cpp \
19     renamemultidialog.cpp \
20     operationdialog.cpp \
21     irenamedialog.cpp \
22     iworker.cpp \
23     renameworker.cpp \
24     deleteworker.cpp \
25     overwritedialog.cpp \
26     copymoveworker.cpp \
27     sortdialog.cpp \
28     filetablemodel.cpp \
29     filetableview.cpp \
30     history.cpp \
31     historydialog.cpp
32
33 HEADERS  += mainwindow.h \
34     folderpanel.h \
35     singleton.hpp \
36     renamesingledialog.h \
37     renamemultidialog.h \
38     operationdialog.h \
39     common.h \
40     irenamedialog.h \
41     iworker.h \
42     renameworker.h \
43     deleteworker.h \
44     overwritedialog.h \
45     copymoveworker.h \
46     sortdialog.h \
47     filetablemodel.h \
48     filetableview.h \
49     history.h \
50     historydialog.h
51
52 FORMS    += mainwindow.ui \
53     folderpanel.ui \
54     renamesingledialog.ui \
55     renamemultidialog.ui \
56     operationdialog.ui \
57     overwritedialog.ui \
58     sortdialog.ui \
59     historydialog.ui
60
61 RESOURCES += \
62     resource.qrc
63
64 OTHER_FILES += \
65     Gefu.rc \
66     README.md
67
68 mac {
69     ICON = ./images/Gefu.icns
70 }
71
72 win32 {
73     RC_FILE = Gefu.rc
74 }