-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextractor.pro
More file actions
executable file
·47 lines (38 loc) · 943 Bytes
/
extractor.pro
File metadata and controls
executable file
·47 lines (38 loc) · 943 Bytes
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
QT_VERSION = $$[QT_VERSION]
QT_VERSION = $$split(QT_VERSION, ".")
QT_VER_MAJ = $$member(QT_VERSION, 0)
QT_VER_MIN = $$member(QT_VERSION, 1)
QT += core gui
greaterThan(QT_VER_MAJ, 4) {
QT += widgets
}
TARGET = extractor4
greaterThan(QT_VER_MAJ, 4) {
TARGET = extractor
}
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
extractthread.cpp \
framedialog.cpp \
framesthread.cpp \
QProgressIndicator.cpp \
qvideofile.cpp
HEADERS += mainwindow.h \
extractthread.h \
framedialog.h \
framesthread.h \
QProgressIndicator.h \
qvideofile.h
FORMS += mainwindow.ui \
framedialog.ui
win32:INCLUDEPATH += C:/Qt/ffmpeg/include
win32:LIBS += -LC:/Qt/ffmpeg/lib
LIBS += -lavutil -lavcodec -lavformat -lswscale
#LIBS += C:/Qt/4.7.4/plugins/codecs/libqcncodecs4.a
win32:RC_FILE = extractor.rc
RESOURCES += \
extractor.qrc
OTHER_FILES += \
extractor.ts \
ChangeLog.txt