1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/qqtliveplayer/qqtliveplayer.pro

63 lines
1.7 KiB
Prolog
Raw Normal View History

2017-09-05 18:07:05 +08:00
#-------------------------------------------------
#
# Project created by QtCreator 2016-06-17T10:03:52
#
#-------------------------------------------------
2018-01-09 11:12:55 +08:00
include(../../src/app_base_manager.pri)
2017-10-22 12:21:19 +08:00
2017-09-05 18:07:05 +08:00
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = qqtliveplayer
TEMPLATE = app
INCLUDEPATH += .
CONFIG += c++11
unix {
LIBS += -lVLCQtCore -lVLCQtWidgets
#QMAKE_CXXFLAGS += -std=c++11
#LIBS += -L/usr/local/lib -lVLCQtCore -lVLCQtWidgets
INCLUDEPATH += /usr/local/include
}
win32 {
## Windows common build here
contains(QMAKE_TARGET.arch, x86) {
message("x86 build")
## Windows x86 (32bit) specific build here
CONFIG(debug, debug|release) {
LIBS += -LC:\\Users\\tdr\\Documents\\QtSolution\\qt4web\\vlcqt\\lib -lVLCQtCored -lVLCQtWidgetsd
} else {
LIBS += -LC:\\Users\\tdr\\Documents\\QtSolution\\qt4web\\vlcqt\\lib -lVLCQtCore -lVLCQtWidgets
}
INCLUDEPATH += C:\\Users\\tdr\\Documents\\QtSolution\\qt4web\\vlcqt\\include
} else {
message("x86_64 build")
## Windows x64 (64bit) specific build here
CONFIG(debug, debug|release) {
LIBS += -LC:\\Users\\tdr\\Documents\\QtSolution\\qt4web\\vlcqt64\\lib -lVLCQtCored -lVLCQtWidgetsd
} else {
LIBS += -LC:\\Users\\tdr\\Documents\\QtSolution\\qt4web\\vlcqt64\\lib -lVLCQtCore -lVLCQtWidgets
}
INCLUDEPATH += C:\\Users\\tdr\\Documents\\QtSolution\\qt4web\\vlcqt64\\include
}
}
SOURCES += $$PWD/main.cpp $$PWD/qqtapp.cpp $$PWD/qqtwindow.cpp \
animationmanager.cpp
HEADERS += $$PWD/qqtapp.h $$PWD/qqtwindow.h \
animationmanager.h
FORMS += $$PWD/qqtwindow.ui