-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVPC.pro
65 lines (58 loc) · 1.36 KB
/
VPC.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
HEADERS += decoder.h \
utils.h \
MainWindow.h \
Information.h \
Video.h \
VideoPlayer.h \
DetectorThread.h \
LoadingDialog.h \
NotePushableWidget.h \
encoder.h \
define.h \
queue.h \
Recorder.h \
RecordThread.h \
VideoView.h \
PaintableView.h \
filter.h \
detector.h \
VideoDetector.h
SOURCES += main.cpp \
decoder.c \
utils.c \
Information.cpp \
Video.cpp \
VideoPlayer.cpp \
MainWindow.cpp \
DetectorThread.cpp \
LoadingDialog.cpp \
NotePushableWidget.cpp \
encoder.c \
queue.c \
Recorder.cpp \
RecordThread.cpp \
VideoView.cpp \
PaintableView.cpp \
filter.c \
detector.c \
VideoDetector.cpp
filter.c
CONFIG += qt
CONFIG += debug
CONFIG += release
CONFIG += build_all
QT += widgets
win32{
INCLUDEPATH += $$PWD/ffmpeg/win/32-bit/include
LIBS += -L$$PWD/ffmpeg/win/32-bit/lib -lavcodec -lavformat -lavutil -lavdevice -lswscale
LIBS += -L$$PWD/ffmpeg/win/32-bit/bin
LIBS += -L$$PWD/vlc
}
unix:!macx{
INCLUDEPATH += $$PWD/ffmpeg/linux/64-bit/include
LIBS += -L$$PWD/ffmpeg/linux/64-bit/lib -lavcodec -lavformat -lavdevice -lavfilter -lpostproc -lavformat -lavcodec -lx264 -lbz2 -lz -lrt -lswresample -lswscale -lavutil -lm
LIBS += -L$$PWD/vlc
}
RESOURCES += res.qrc
RESOURCES += style.qrc
RC_FILE += vpc.rc