summaryrefslogtreecommitdiff
path: root/libresourceqt.pro
blob: 64672624009d3254858d0de68a0657525df3295e (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
34
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
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