-
Notifications
You must be signed in to change notification settings - Fork 1
/
ts-analyzer.pro
77 lines (62 loc) · 1.76 KB
/
ts-analyzer.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
#-------------------------------------------------
#
# Project created by QtCreator 2018-04-25T20:00:31
#
#-------------------------------------------------
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = ts-analyzer
CONFIG += c++11
HEADERS = \
mainwindow.h \
optionsdialog.h \
searchdialog.h \
parserdialog.h
SOURCES = \
main.cpp \
mainwindow.cpp \
optionsdialog.cpp \
searchdialog.cpp \
parserdialog.cpp
### 3rd-party libs ###
# mpeg2ts
release {
LIBS += -L"$$_PRO_FILE_PWD_/3rdparty/mpeg2ts/lib" -lmpeg2ts
}
debug {
LIBS += -L"$$_PRO_FILE_PWD_/3rdparty/mpeg2ts/lib" -lmpeg2ts-d
}
INCLUDEPATH += "$$_PRO_FILE_PWD_"/3rdparty/mpeg2ts/include
INCLUDEPATH += "$$_PRO_FILE_PWD_"/3rdparty/qhexedit2
# mpeg2ts
HEADERS += \
3rdparty/mpeg2ts/include/mpeg2ts/mpeg2ts.h \
3rdparty/mpeg2ts/include/mpeg2ts/Ts_IEC13818-1.h \
3rdparty/mpeg2ts/include/mpeg2ts/TsUtilities.h \
# hexedit2
HEADERS += \
3rdparty/qhexedit2/qhexedit.h \
3rdparty/qhexedit2/chunks.h \
3rdparty/qhexedit2/commands.h \
SOURCES += \
3rdparty/qhexedit2/qhexedit.cpp \
3rdparty/qhexedit2/chunks.cpp \
3rdparty/qhexedit2/commands.cpp \
RESOURCES = \
application.qrc
FORMS += \
optionsdialog.ui \
searchdialog.ui \
parserdialog.ui \
mainwindow.ui
OTHER_FILES += \
README.md \
3rdparty/mpeg2ts/include/settings.json
DEFINES += QHEXEDIT_EXPORTS
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
#ifndef Q_OS_WIN32
DEFINES += MPEG2TS_STATIC_DEFINE
#endif