Files
qcma/qcma.pro
codestation 92f4572814 Make sure that BaseWorker deletes the thread when is finished.
Implemented ClientManager so it can manage the usb and wireless threads.
Impelmented better mutex logic on CmaClient.
Execute the cma events in a different thread so the event listener is
available.
Code refactoring.
Fix memory leaks in threads.
Updated readme.
2013-08-25 01:40:14 -04:30

67 lines
1.2 KiB
Prolog

#-------------------------------------------------
#
# Project created by QtCreator 2013-07-23T15:34:17
#
#-------------------------------------------------
QT += core \
gui \
widgets \
network
TARGET = qcma
TEMPLATE = app
SOURCES += main.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 \
avdecoder.cpp \
cmaevent.cpp \
clientmanager.cpp
HEADERS += \
capability.h \
database.h \
cmaobject.h \
cmarootobject.h \
utils.h \
mainwidget.h \
configwidget.h \
singleapplication.h \
baseworker.h \
sforeader.h \
cmaclient.h \
cmabroadcast.h \
avdecoder.h \
cmaevent.h \
clientmanager.h
CONFIG += link_pkgconfig
PKGCONFIG += libvitamtp libavformat libavcodec libavutil libswscale
QMAKE_CXXFLAGS += -Wno-write-strings -Wall
RESOURCES += \
qcmares.qrc
OTHER_FILES += \
resources/psp2-updatelist.xml \
resources/psv_icon.png \
README.md
FORMS += \
configwidget.ui