-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTeslaManager.pro
More file actions
117 lines (105 loc) · 3.43 KB
/
TeslaManager.pro
File metadata and controls
117 lines (105 loc) · 3.43 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
QT += core gui
QT += core gui multimedia multimediawidgets
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++17
# 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 \
mainwindow.cpp
INCLUDEPATH += ffmpeg/include
LIBS += -L$$PWD/ffmpeg/lib -lavcodec -lavformat -lavutil -lswresample -lswscale
HEADERS += \
mainwindow.h
FORMS += \
mainwindow.ui
TRANSLATIONS += \
TeslaManager_en_AU.ts
CONFIG += lrelease
CONFIG += embed_translations
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
CustomResources.qrc
DISTFILES += \
ffmpeg/LICENSE.txt \
ffmpeg/bin/avcodec-61.dll \
ffmpeg/bin/avdevice-61.dll \
ffmpeg/bin/avfilter-10.dll \
ffmpeg/bin/avformat-61.dll \
ffmpeg/bin/avutil-59.dll \
ffmpeg/bin/ffmpeg.exe \
ffmpeg/bin/ffplay.exe \
ffmpeg/bin/ffprobe.exe \
ffmpeg/bin/postproc-58.dll \
ffmpeg/bin/swresample-5.dll \
ffmpeg/bin/swscale-8.dll \
ffmpeg/doc/bootstrap.min.css \
ffmpeg/doc/community.html \
ffmpeg/doc/default.css \
ffmpeg/doc/developer.html \
ffmpeg/doc/faq.html \
ffmpeg/doc/fate.html \
ffmpeg/doc/ffmpeg-all.html \
ffmpeg/doc/ffmpeg-bitstream-filters.html \
ffmpeg/doc/ffmpeg-codecs.html \
ffmpeg/doc/ffmpeg-devices.html \
ffmpeg/doc/ffmpeg-filters.html \
ffmpeg/doc/ffmpeg-formats.html \
ffmpeg/doc/ffmpeg-protocols.html \
ffmpeg/doc/ffmpeg-resampler.html \
ffmpeg/doc/ffmpeg-scaler.html \
ffmpeg/doc/ffmpeg-utils.html \
ffmpeg/doc/ffmpeg.html \
ffmpeg/doc/ffplay-all.html \
ffmpeg/doc/ffplay.html \
ffmpeg/doc/ffprobe-all.html \
ffmpeg/doc/ffprobe.html \
ffmpeg/doc/general.html \
ffmpeg/doc/git-howto.html \
ffmpeg/doc/libavcodec.html \
ffmpeg/doc/libavdevice.html \
ffmpeg/doc/libavfilter.html \
ffmpeg/doc/libavformat.html \
ffmpeg/doc/libavutil.html \
ffmpeg/doc/libswresample.html \
ffmpeg/doc/libswscale.html \
ffmpeg/doc/mailing-list-faq.html \
ffmpeg/doc/nut.html \
ffmpeg/doc/platform.html \
ffmpeg/doc/style.min.css \
ffmpeg/lib/avcodec-61.def \
ffmpeg/lib/avcodec.lib \
ffmpeg/lib/avdevice-61.def \
ffmpeg/lib/avdevice.lib \
ffmpeg/lib/avfilter-10.def \
ffmpeg/lib/avfilter.lib \
ffmpeg/lib/avformat-61.def \
ffmpeg/lib/avformat.lib \
ffmpeg/lib/avutil-59.def \
ffmpeg/lib/avutil.lib \
ffmpeg/lib/libavcodec.dll.a \
ffmpeg/lib/libavdevice.dll.a \
ffmpeg/lib/libavfilter.dll.a \
ffmpeg/lib/libavformat.dll.a \
ffmpeg/lib/libavutil.dll.a \
ffmpeg/lib/libpostproc.dll.a \
ffmpeg/lib/libswresample.dll.a \
ffmpeg/lib/libswscale.dll.a \
ffmpeg/lib/pkgconfig/libavcodec.pc \
ffmpeg/lib/pkgconfig/libavdevice.pc \
ffmpeg/lib/pkgconfig/libavfilter.pc \
ffmpeg/lib/pkgconfig/libavformat.pc \
ffmpeg/lib/pkgconfig/libavutil.pc \
ffmpeg/lib/pkgconfig/libpostproc.pc \
ffmpeg/lib/pkgconfig/libswresample.pc \
ffmpeg/lib/pkgconfig/libswscale.pc \
ffmpeg/lib/postproc-58.def \
ffmpeg/lib/postproc.lib \
ffmpeg/lib/swresample-5.def \
ffmpeg/lib/swresample.lib \
ffmpeg/lib/swscale-8.def \
ffmpeg/lib/swscale.lib