forked from mltframework/shotcut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshotcut.pro
142 lines (133 loc) · 3.6 KB
/
shotcut.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
QT += opengl xml
TARGET = shotcut
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
mltcontroller.cpp \
sdlwidget.cpp \
scrubbar.cpp \
openotherdialog.cpp \
widgets/plasmawidget.cpp \
widgets/lissajouswidget.cpp \
widgets/isingwidget.cpp \
widgets/video4linuxwidget.cpp \
widgets/colorproducerwidget.cpp \
widgets/decklinkproducerwidget.cpp \
widgets/networkproducerwidget.cpp \
widgets/colorbarswidget.cpp \
widgets/noisewidget.cpp \
widgets/pulseaudiowidget.cpp \
widgets/jackproducerwidget.cpp \
widgets/alsawidget.cpp \
widgets/x11grabwidget.cpp \
player.cpp \
glwidget.cpp \
widgets/servicepresetwidget.cpp \
abstractproducerwidget.cpp \
widgets/avformatproducerwidget.cpp \
widgets/imageproducerwidget.cpp \
widgets/timespinbox.cpp \
widgets/audiosignal.cpp \
docks/recentdock.cpp \
docks/encodedock.cpp \
dialogs/addencodepresetdialog.cpp \
jobqueue.cpp \
docks/jobsdock.cpp \
dialogs/textviewerdialog.cpp \
models/playlistmodel.cpp \
docks/playlistdock.cpp \
dialogs/durationdialog.cpp
HEADERS += mainwindow.h \
mltcontroller.h \
sdlwidget.h \
scrubbar.h \
openotherdialog.h \
widgets/plasmawidget.h \
abstractproducerwidget.h \
widgets/lissajouswidget.h \
widgets/isingwidget.h \
widgets/video4linuxwidget.h \
widgets/colorproducerwidget.h \
widgets/decklinkproducerwidget.h \
widgets/networkproducerwidget.h \
widgets/colorbarswidget.h \
widgets/noisewidget.h \
widgets/pulseaudiowidget.h \
widgets/jackproducerwidget.h \
widgets/alsawidget.h \
widgets/x11grabwidget.h \
player.h \
glwidget.h \
widgets/servicepresetwidget.h \
widgets/avformatproducerwidget.h \
widgets/imageproducerwidget.h \
widgets/timespinbox.h \
widgets/audiosignal.h \
docks/recentdock.h \
docks/encodedock.h \
dialogs/addencodepresetdialog.h \
jobqueue.h \
docks/jobsdock.h \
dialogs/textviewerdialog.h \
models/playlistmodel.h \
docks/playlistdock.h \
dialogs/durationdialog.h
FORMS += mainwindow.ui \
openotherdialog.ui \
widgets/plasmawidget.ui \
widgets/lissajouswidget.ui \
widgets/isingwidget.ui \
widgets/video4linuxwidget.ui \
widgets/colorproducerwidget.ui \
widgets/decklinkproducerwidget.ui \
widgets/networkproducerwidget.ui \
widgets/colorbarswidget.ui \
widgets/noisewidget.ui \
widgets/pulseaudiowidget.ui \
widgets/jackproducerwidget.ui \
widgets/alsawidget.ui \
widgets/x11grabwidget.ui \
widgets/servicepresetwidget.ui \
widgets/avformatproducerwidget.ui \
widgets/imageproducerwidget.ui \
docks/recentdock.ui \
docks/encodedock.ui \
dialogs/addencodepresetdialog.ui \
docks/jobsdock.ui \
dialogs/textviewerdialog.ui \
docks/playlistdock.ui \
dialogs/durationdialog.ui
RESOURCES += \
resources.qrc
OTHER_FILES += \
COPYING \
deploy-linux.sh \
deploy-osx.sh \
deploy-win32.sh \
shotcut.rc \
scripts/build-shotcut.sh \
icons/shotcut.icns \
scripts/shotcut.nsi \
Info.plist
mac {
TARGET = Shotcut
ICON = icons/shotcut.icns
QMAKE_INFO_PLIST = Info.plist
}
win32 {
INCLUDEPATH += include/mlt++ include/mlt
LIBS += -Llib -lmlt++ -lmlt
RC_FILE = shotcut.rc
SOURCES += GLee/GLee.c
HEADERS += GLee/GLee.h
} else {
CONFIG += link_pkgconfig
PKGCONFIG += mlt++
}
unix:!mac {
LIBS += -lGLU
}
isEmpty(SHOTCUT_VERSION) {
SHOTCUT_VERSION = $$system(date "+%y.%m.%d")
}
DEFINES += SHOTCUT_VERSION=\\\"$$SHOTCUT_VERSION\\\"