Files
qcma/qcma.pro
codestation d93de053e9 Reimplemented broadcaster so it can send 503 when a connection is in
place.
Removed qcma/cmaserver class and reimplemented them in cmaclient.
Make sure that the scanned files are sorted by filename.
Implement filters so the database doesn't pick up unsupported formats.
Implement album cover display for album listing in the vita.
Fixed bug with streaming of pictures in wireless mode.
Some code refactoring.
2013-08-19 09:46:03 -04:30

68 lines
1.4 KiB
Prolog

#-------------------------------------------------
#
# Project created by QtCreator 2013-07-23T15:34:17
#
#-------------------------------------------------
QT += core \
gui \
widgets \
network
TARGET = qcma
TEMPLATE = app
SOURCES += main.cpp \
wirelessworker.cpp \
capability.cpp \
database.cpp \
cmaobject.cpp \
cmarootobject.cpp \
utils.cpp \
mainwidget.cpp \
configwidget.cpp \
singleapplication.cpp \
baseworker.cpp \
sforeader.cpp \
cmaclient.cpp \
cmabroadcast.cpp
HEADERS += \
wirelessworker.h \
capability.h \
database.h \
cmaobject.h \
cmarootobject.h \
utils.h \
mainwidget.h \
configwidget.h \
singleapplication.h \
baseworker.h \
sforeader.h \
cmaclient.h \
cmabroadcast.h
CONFIG += link_pkgconfig
PKGCONFIG += libmediainfo
QMAKE_CXXFLAGS += -Wno-write-strings -Wall
RESOURCES += \
qcmares.qrc
OTHER_FILES += \
resources/psp2-updatelist.xml \
resources/psv_icon.png
FORMS += \
configwidget.ui
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../../../usr/lib/release/ -lvitamtp
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../../../usr/lib/debug/ -lvitamtp
else:unix: LIBS += $$PWD/../../../../usr/lib/libvitamtp.a -lusb-1.0 -lxml2
INCLUDEPATH += $$PWD/../../../../usr/include
DEPENDPATH += $$PWD/../../../../usr/include