-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fusion_ffmpeg_studio.pro
92 lines (80 loc) · 2.23 KB
/
Fusion_ffmpeg_studio.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
QT += core gui xml multimedia multimediawidgets quick quickwidgets quickcontrols2
greaterThan(QT_MAJOR_VERSION, 5): QT += widgets
CONFIG += c++17
WEBENGINE_CONFIG += use_proprietary_codecs
# App name
TARGET = 'Fusion ffmpeg studio'
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
main.cpp \
models/fformats.cpp \
models/fsegment.cpp \
models/fvideo.cpp \
models/project.cpp \
models/renderwork.cpp \
panes/projectcreator.cpp \
panes/projectcreatorfolder.cpp \
panes/projectcreatorsd.cpp \
utils/dialogs.cpp \
utils/ffmpeg.cpp \
utils/logger.cpp \
utils/mediainfo.cpp \
utils/myqsysinfo.cpp \
utils/renderer.cpp \
utils/settings.cpp \
windows/about.cpp \
windows/mainwindow.cpp \
panes/editorpane.cpp \
panes/loadingpane.cpp \
panes/welcomepane.cpp \
windows/preferences.cpp \
worker.cpp
HEADERS += \
models/fformat.h \
models/fformats.h \
models/fsegment.h \
models/fvideo.h \
models/loading.h \
models/project.h \
models/renderwork.h \
panes/projectcreator.h \
panes/projectcreatorfolder.h \
panes/projectcreatorsd.h \
utils/dialogs.h \
utils/exitcodes.h \
utils/ffmpeg.h \
utils/logger.h \
utils/mediainfo.h \
utils/renderer.h \
utils/settings.h \
utils/myqsysinfo.h \
windows/about.h \
windows/mainwindow.h \
panes/editorpane.h \
panes/loadingpane.h \
panes/welcomepane.h \
windows/preferences.h \
worker.h
FORMS += \
panes/projectcreator.ui \
panes/projectcreatorfolder.ui \
panes/projectcreatorsd.ui \
windows/about.ui \
windows/mainwindow.ui \
panes/editorpane.ui \
panes/loadingpane.ui \
panes/welcomepane.ui \
windows/preferences.ui
win32 {
LIBS += -lwbemuuid -ladvapi32
QMAKE_LFLAGS -= -lwbemuuid -ladvapi32
}
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
Resources/Resources.qrc
DISTFILES +=