aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/qmmpui.pro
blob: 17147e3418d4d1a277e3f90fa46e6f121d044398 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
include(../../qmmp.pri)

unix:TARGET = ../../lib/qmmpui
win32:TARGET = ../../../bin/qmmpui
CONFIG += release \
warn_on \
shared \
qt \
thread

QMAKE_LIBDIR += ../../lib qmmpui
LIBS += -Wl,-rpath,./
unix:LIBS += -L../../lib -lqmmp
win32:LIBS += -L../../bin -lqmmp0
INCLUDEPATH += ../

TEMPLATE = lib

unix : isEmpty(LIB_DIR){
        LIB_DIR = /lib
    }

VERSION = $$QMMP_VERSION

unix: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 \
           playlistsettings.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 \
           playlistsettings.cpp

unix: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 \
               translations/libqmmpui_it.ts \
               translations/libqmmpui_lt.ts \
               translations/libqmmpui_pl.ts
unix {
devel.files += abstractplaylistitem.h \
               commandlinemanager.h \
               commandlineoption.h \
               filedialogfactory.h \
               filedialog.h \
               generalfactory.h \
               general.h \
               generalhandler.h \
               mediaplayer.h \
               playlistformat.h \
               playlistitem.h \
               playlistmodel.h \
               playlistparser.h

devel.path = /include/qmmpui

INSTALLS += target devel
}