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

# Input
PUBLIC_HEADERS = include/resource.h

HEADERS += $$PUBLIC_HEADERS

SOURCES += src/resource.cpp

OBJECTS_DIR = build
MOC_DIR = build

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

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

INSTALLS       = target headers