summaryrefslogtreecommitdiff
path: root/libresourceqt.pro
blob: 543a17117a929d04f5d2a04b0eacc255ba35b16b (plain)
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
TEMPLATE = lib
VERSION = 1.0.0
TARGET = resourceqt
DESTDIR = build
DEPENDPATH += include src
INCLUDEPATH += src include

# Input
PUBLIC_HEADERS = include/resource.h \
           include/resource-factory.h \
           include/resource-types.h
HEADERS += $$PUBLIC_HEADERS \
           src/libplayback-wrapper.h \
           src/resource-library.h

SOURCES += src/libplayback-wrapper.cpp \
           src/resource.cpp \
           src/resource-factory.cpp

OBJECTS_DIR = build
MOC_DIR = build

CONFIG  += qt link_pkgconfig dll
QT = core dbus
PKGCONFIG += dbus-1 libplayback-1

# Install directives
headers.files  = $$PUBLIC_HEADERS
INSTALLBASE    = /usr
target.path    = $$INSTALLBASE/lib
headers.path   = $$INSTALLBASE/include/resource/qt4

INSTALLS       = target headers