diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2010-02-03 21:00:34 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2010-02-03 21:00:34 +0000 |
| commit | 0c969362a32a2990c5b77e2720bc0f343957469d (patch) | |
| tree | 1bcee268dfa149bd05cd4d57d5d98b046273e3cb /src/plugins/Input/cue/cue.pro | |
| parent | 72f0f5c74aa64a60d6c39f8490d7dd876bdf2885 (diff) | |
| download | qmmp-0c969362a32a2990c5b77e2720bc0f343957469d.tar.gz qmmp-0c969362a32a2990c5b77e2720bc0f343957469d.tar.bz2 qmmp-0c969362a32a2990c5b77e2720bc0f343957469d.zip | |
cue plugin: added automatic charset detection (Closes issue 50)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1542 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/cue/cue.pro')
| -rw-r--r-- | src/plugins/Input/cue/cue.pro | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/src/plugins/Input/cue/cue.pro b/src/plugins/Input/cue/cue.pro index 8d6e877c8..21078dd2e 100644 --- a/src/plugins/Input/cue/cue.pro +++ b/src/plugins/Input/cue/cue.pro @@ -19,11 +19,21 @@ CONFIG += release \ warn_on \ plugin TEMPLATE = lib -unix:QMAKE_LIBDIR += ../../../../lib -win32:QMAKE_LIBDIR += ../../../../bin -unix:LIBS += -lqmmp \ - -L/usr/lib -win32:LIBS += -lqmmp0 +unix{ + QMAKE_LIBDIR += ../../../../lib + LIBS += -lqmmp -L/usr/lib + contains(CONFIG, WITH_ENCA){ + CONFIG += link_pkgconfig + PKGCONFIG += enca + DEFINES += WITH_ENCA + } +} + +win32{ + QMAKE_LIBDIR += ../../../../bin + LIBS += -lqmmp0 +} + TRANSLATIONS = translations/cue_plugin_ru.ts \ translations/cue_plugin_uk_UA.ts \ translations/cue_plugin_zh_CN.ts \ @@ -41,5 +51,5 @@ unix { desktop.files = qmmp_cue.desktop desktop.path = /share/applications INSTALLS += target \ - desktop + desktop } |
