-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStopMotionAnimation.pro
More file actions
127 lines (100 loc) · 3.88 KB
/
Copy pathStopMotionAnimation.pro
File metadata and controls
127 lines (100 loc) · 3.88 KB
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
#-------------------------------------------------
#
# Project created by QtCreator 2017-02-06T11:27:37
#
#-------------------------------------------------
QT += core gui multimedia multimediawidgets widgets
TARGET = Stop_Motion_Creator
TEMPLATE = app
CONFIG += c++17
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += main.cpp \
stopmotionanimation.cpp \
movie.cpp \
soundeffect.cpp \
helpdialog.cpp \
settingsdialog.cpp \
filenameconstructiondialog.cpp \
avcodecwrapper.cpp \
utils.cpp \
waveform.cpp \
savefinalmoviedialog.cpp \
previousframeoverlayeffect.cpp \
frameeditor.cpp \
frame.cpp \
settings.cpp \
audioinputstream.cpp \
audiojoiner.cpp \
multiregionwaveform.cpp \
variableselectionwaveform.cpp \
soundselectiondialog.cpp \
movieframeslider.cpp \
addtopreviousmoviedialog.cpp \
cameramonitor.cpp \
importprogressdialog.cpp \
soundeffectlistdialog.cpp
HEADERS += stopmotionanimation.h \
movie.h \
soundeffect.h \
helpdialog.h \
settingsdialog.h \
filenameconstructiondialog.h \
avcodecwrapper.h \
utils.h \
waveform.h \
savefinalmoviedialog.h \
previousframeoverlayeffect.h \
frameeditor.h \
frame.h \
settings.h \
audioinputstream.h \
audiojoiner.h \
plsexception.h \
avexception.h \
multiregionwaveform.h \
variableselectionwaveform.h \
soundselectiondialog.h \
movieframeslider.h \
addtopreviousmoviedialog.h \
cameramonitor.h \
importprogressdialog.h \
soundeffectlistdialog.h
FORMS += stopmotionanimation.ui \
helpdialog.ui \
settingsdialog.ui \
filenameconstructiondialog.ui \
savefinalmoviedialog.ui \
frameeditor.ui \
soundselectiondialog.ui \
addtopreviousmoviedialog.ui \
importprogressdialog.ui \
soundeffectlistdialog.ui
RESOURCES += \
resources.qrc
RC_FILE = StopMotionAnimation.rc
GIT_VERSION = $$system($$quote(git describe --long --tags))
GIT_TIMESTAMP = $$system($$quote(git log -n 1 --format=format:"%at"))
QMAKE_SUBSTITUTES += $$PWD/version.h.in
win32: LIBS += -L$$PWD/../ffmpeg/win64/lib/ -lavutil
INCLUDEPATH += $$PWD/../ffmpeg/win64/include
DEPENDPATH += $$PWD/../ffmpeg/win64/include
win32:!win32-g++: PRE_TARGETDEPS += $$PWD/../ffmpeg/win64/lib/avutil.lib
else:win32-g++: PRE_TARGETDEPS += $$PWD/../ffmpeg/win64/lib/libavutil.a
win32: LIBS += -L$$PWD/../ffmpeg/win64/lib/ -lavcodec
win32:!win32-g++: PRE_TARGETDEPS += $$PWD/../ffmpeg/win64/lib/avcodec.lib
else:win32-g++: PRE_TARGETDEPS += $$PWD/../ffmpeg/win64/lib/libavcodec.a
win32: LIBS += -L$$PWD/../ffmpeg/win64/lib/ -lavformat
win32:!win32-g++: PRE_TARGETDEPS += $$PWD/../ffmpeg/win64/lib/avformat.lib
else:win32-g++: PRE_TARGETDEPS += $$PWD/../ffmpeg/win64/lib/libavformat.a
win32: LIBS += -L$$PWD/../ffmpeg/win64/lib/ -lavfilter
win32:!win32-g++: PRE_TARGETDEPS += $$PWD/../ffmpeg/win64/lib/avfilter.lib
else:win32-g++: PRE_TARGETDEPS += $$PWD/../ffmpeg/win64/lib/libavfilter.a
win32: LIBS += -L$$PWD/../ffmpeg/win64/lib/ -lswscale
win32:!win32-g++: PRE_TARGETDEPS += $$PWD/../ffmpeg/win64/lib/swscale.lib
else:win32-g++: PRE_TARGETDEPS += $$PWD/../ffmpeg/win64/lib/libswscale.a
win32: LIBS += -L$$PWD/../ffmpeg/win64/lib/ -lswresample
win32:!win32-g++: PRE_TARGETDEPS += $$PWD/../ffmpeg/win64/lib/swresample.lib
else:win32-g++: PRE_TARGETDEPS += $$PWD/../ffmpeg/win64/lib/libswresample.a
DISTFILES += \
StopMotionAnimation.rc \
version.h.in