-
Notifications
You must be signed in to change notification settings - Fork 4
/
mugi-ffmpeg.pro
executable file
·69 lines (58 loc) · 1.31 KB
/
mugi-ffmpeg.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
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = mugi-ffmpeg
TEMPLATE = app
INCLUDEPATH += src
HEADERS += \
src/action.h \
src/arrangefilter.h \
src/automation.h \
src/deletefilter.h \
src/estimator.h \
src/fileext.h \
src/jsonhelper.h \
src/mainwindow.h \
src/options.h \
src/outputparser.h \
src/progressbar.h \
src/progresstable.h \
src/selector.h \
src/settings.h \
src/sourceitemdelegate.h \
src/sourcesmodel.h \
src/taskitemdelegate.h \
src/tasksmodel.h \
src/version.h \
src/worker.h \
src/namematcher.h
SOURCES += \
src/action.cpp \
src/arrangefilter.cpp \
src/automation.cpp \
src/deletefilter.cpp \
src/estimator.cpp \
src/fileext.cpp \
src/jsonhelper.cpp \
src/main.cpp \
src/mainwindow.cpp \
src/options.cpp \
src/outputparser.cpp \
src/progressbar.cpp \
src/progresstable.cpp \
src/selector.cpp \
src/settings.cpp \
src/sourceitemdelegate.cpp \
src/sourcesmodel.cpp \
src/taskitemdelegate.cpp \
src/tasksmodel.cpp \
src/worker.cpp \
src/namematcher.cpp
FORMS += \
src/mainwindow.ui
RESOURCES += \
src/resources.qrc
RC_FILE = mugi-ffmpeg.rc
DISTFILES += \
todo.txt
target.path = /usr/local/bin
INSTALLS += target