blob: 5148a612e9b8d2c1d245f54be9c8cc90ea7f366e (
plain) (
tree)
|
|
include(../../qmmp.pri)
TARGET = ../../lib/qmmpui
CONFIG += release \
warn_on \
qt \
thread
QMAKE_LIBDIR += ../../lib qmmpui
LIBS += -Wl,-rpath,./
LIBS += -L../../lib -lqmmp
INCLUDEPATH += ../
TEMPLATE = lib
unix : isEmpty(LIB_DIR){
LIB_DIR = /lib
}
unix : DEFINES += LIB_DIR=\\\"$$LIB_DIR\\\"
DEFINES += QMMP_VERSION=$$QMMP_VERSION
contains(CONFIG, SVN_VERSION){
DEFINES += QMMP_STR_VERSION=\\\"$$QMMP_VERSION-svn\\\"
}else {
DEFINES += QMMP_STR_VERSION=\\\"$$QMMP_VERSION\\\"
}
VERSION = $$QMMP_VERSION
target.path = $$LIB_DIR
HEADERS += general.h \
generalfactory.h \
generalhandler.h \
playlistformat.h \
playlistparser.h \
commandlinemanager.h \
commandlineoption.h \
filedialog.h \
filedialogfactory.h \
qtfiledialog.h \
abstractplaylistitem.h \
playlistitem.h \
playlistmodel.h \
playstate.h \
fileloader.h \
mediaplayer.h
SOURCES += general.cpp \
generalhandler.cpp \
playlistparser.cpp \
commandlinemanager.cpp \
filedialog.cpp \
qtfiledialog.cpp \
abstractplaylistitem.cpp \
playlistmodel.cpp \
playstate.cpp \
playlistitem.cpp \
fileloader.cpp \
mediaplayer.cpp
DESTDIR = .
RESOURCES += translations/libqmmpui_locales.qrc
TRANSLATIONS = translations/libqmmpui_ru.ts \
translations/libqmmpui_tr.ts \
translations/libqmmpui_zh_CN.ts \
translations/libqmmpui_cs.ts \
translations/libqmmpui_pt_BR.ts \
translations/libqmmpui_uk_UA.ts \
translations/libqmmpui_zh_TW.ts \
translations/libqmmpui_de.ts
devel.files += general.h \
generalfactory.h \
generalhandler.h \
playlistformat.h \
playlistparser.h \
commandlinemanager.h \
commandlineoption.h \
filedialog.h \
filedialogfactory.h
devel.path = /include/qmmpui
INSTALLS += target devel
|