blob: 5c63eb0e442472ab2e1724c37f7ae91c4a1b51e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
include(../../plugins.pri)
CONFIG += warn_on \
plugin \
lib
TARGET = $$PLUGINS_PREFIX/CommandLineOptions/seekoption
QMAKE_CLEAN = $$PLUGINS_PREFIX/CommandLineOptions/libseekoption.so
TEMPLATE = lib
QMAKE_LIBDIR += ../../../../lib
RESOURCES = translations/translations.qrc
isEmpty(LIB_DIR){
LIB_DIR = /lib
}
target.path = $$LIB_DIR/qmmp/CommandLineOptions
INSTALLS += target
INCLUDEPATH += ../../../../src
LIBS += -lqmmpui -lqmmp
HEADERS += seekoption.h
SOURCES += seekoption.cpp
|