blob: 43652f4f7cf818c46b2ab786d36b8e07c8a04ccc (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
include(../../plugins.pri)
CONFIG += release \
warn_on \
plugin \
lib
TARGET =$$PLUGINS_PREFIX/CommandLineOptions/playlistoption
QMAKE_CLEAN =$$PLUGINS_PREFIX/CommandLineOptions/libplaylistoption.so
TEMPLATE = lib
QMAKE_LIBDIR += ../../../../lib
TRANSLATIONS = translations/playlist_plugin_cs.ts \
translations/playlist_plugin_de.ts \
translations/playlist_plugin_pl.ts \
translations/playlist_plugin_ru.ts \
translations/playlist_plugin_uk_UA.ts \
translations/playlist_plugin_zh_TW.ts \
translations/playlist_plugin_zh_CN.ts \
translations/playlist_plugin_it.ts \
translations/playlist_plugin_tr.ts \
translations/playlist_plugin_lt.ts \
translations/playlist_plugin_nl.ts \
translations/playlist_plugin_ja.ts \
translations/playlist_plugin_es.ts
RESOURCES = translations/translations.qrc
isEmpty(LIB_DIR){
LIB_DIR = /lib
}
target.path = $$LIB_DIR/qmmp/CommandLineOptions
INSTALLS += target
INCLUDEPATH += ../../../../src
LIBS += -lqmmpui -lqmmp
HEADERS += playlistoption.h
SOURCES += playlistoption.cpp
|