120 lines
3.6 KiB
Prolog
120 lines
3.6 KiB
Prolog
|
#-------------------------------------------------
|
||
|
#
|
||
|
# Project created by QtCreator 2019-09-23T11:02:49
|
||
|
#
|
||
|
#-------------------------------------------------
|
||
|
QT += core gui
|
||
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||
|
|
||
|
QT += network
|
||
|
QT += multimedia
|
||
|
TARGET = yuvgl
|
||
|
|
||
|
|
||
|
INCLUDEPATH += $$[QT_INSTALL_HEADERS]/QtZlib
|
||
|
|
||
|
include(G:\\project\\c++qt\\qsswraper\\qsswraper.pri)
|
||
|
|
||
|
# 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
|
||
|
# You can also make your code fail to compile if you use deprecated APIs.
|
||
|
# In order to do so, uncomment the following line.
|
||
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
||
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
||
|
|
||
|
CONFIG += C++11
|
||
|
|
||
|
DEFINES += WIN32_LEAN_AND_MEAN
|
||
|
|
||
|
SOURCES += \
|
||
|
components/toast.cpp \
|
||
|
librtmp/amf.c \
|
||
|
librtmp/hashswf.c \
|
||
|
librtmp/log.c \
|
||
|
librtmp/parseurl.c \
|
||
|
librtmp/rtmp.c \
|
||
|
main.cpp \
|
||
|
mainwindow.cpp \
|
||
|
cplaywidget.cpp \
|
||
|
media/AACAudioCoder.cpp \
|
||
|
media/AudioCapture.cpp \
|
||
|
media/CameraCapture.cpp \
|
||
|
media/DXGICapture.cpp \
|
||
|
media/RtmpPusher.cpp \
|
||
|
media/VideoCoder.cpp \
|
||
|
media/audiocaptureff.cpp \
|
||
|
media/screen_capture.cpp \
|
||
|
media/sps_decode.cpp \
|
||
|
utils/Base64.cpp \
|
||
|
utils/Debuger.cpp \
|
||
|
utils/utils.cpp
|
||
|
HEADERS += \
|
||
|
components/toast.h \
|
||
|
librtmp/strncasecmp.h \
|
||
|
mainwindow.h \
|
||
|
cplaywidget.h \
|
||
|
media/screen_capture.h
|
||
|
|
||
|
|
||
|
FORMS += \
|
||
|
components/toast.ui \
|
||
|
mainwindow.ui
|
||
|
|
||
|
|
||
|
INCLUDEPATH += media/ \
|
||
|
C:\\Program Files\\OpenSSL-Win64\\include
|
||
|
|
||
|
contains(DEFINES, __MINGW32__){
|
||
|
message("mingw")
|
||
|
INCLUDEPATH += media/ inc/
|
||
|
contains(QT_ARCH, i386) {
|
||
|
message("32-bit")
|
||
|
LIBS += -L$$PWD/third/ffmpeg/mingw/32/lib
|
||
|
LIBS += -lm -lavformat -lavdevice -lavfilter -lavcodec -lavutil -lswresample -lswscale -lpthread -lm -lfdk-aac -lx264 -liconv -lucrtbase -lstrmiids
|
||
|
LIBS += -lole32 -loleAut32 -lquartz -ldxguid -ldxapi -lwinmm -lbcrypt -lssl -lcrypto -lGdi32 -lws2_32 -lbz2 -lz -lportaudio -lshlwapi -lvfw32 -lpostproc -luuid
|
||
|
} else {
|
||
|
message("64-bit")
|
||
|
}
|
||
|
}else{
|
||
|
message("msvc")
|
||
|
|
||
|
|
||
|
DEFINES += _CRT_SECURE_NO_DEPRECATE \
|
||
|
_CRT_NONSTDC_NO_DEPRECATE
|
||
|
|
||
|
|
||
|
contains(QT_ARCH, i386) {
|
||
|
INCLUDEPATH += inc $$PWD/third/msvc32/fdk-aac/include \
|
||
|
$$PWD/third/msvc32/libx264/include \
|
||
|
$$PWD/third/msvc32/ffmpeg/include \
|
||
|
$$PWD/third/msvc32/openssl/include
|
||
|
|
||
|
LIBS += -L$$PWD/third/msvc32/libx264/lib
|
||
|
LIBS += -L$$PWD/third/msvc32/fdk-aac/lib
|
||
|
LIBS += -L$$PWD/third/msvc32/ffmpeg/lib
|
||
|
LIBS += -L$$PWD/third/msvc32/openssl/lib
|
||
|
|
||
|
LIBS += libavfilter.a libavdevice.a libavcodec.a libpostproc.a \
|
||
|
libavformat.a libavutil.a \
|
||
|
libswresample.a libswscale.a fdk-aac.lib ws2_32.lib libeay32.lib ssleay32.lib \
|
||
|
shell32.lib gdi32.lib crypt32.lib User32.lib GDI32.lib Advapi32.lib zlibstaticd.lib Secur32.lib \
|
||
|
Bcrypt.lib Kernel32.lib portaudio_x86.lib ole32.lib oleaut32.lib strmiids.lib libx264.lib d3d9.lib
|
||
|
|
||
|
}
|
||
|
else{
|
||
|
message("64-bit")
|
||
|
|
||
|
QMAKE_CXXFLAGS_RELEASE += -Zi
|
||
|
QMAKE_LFLAGS_RELEASE += /DEBUG /OPT:REF
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
qnx: target.path = /tmp/$${TARGET}/bin
|
||
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
||
|
!isEmpty(target.path): INSTALLS += target
|
||
|
|