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

# Input
PUBLIC_HEADERS = include/resource.h include/resource-set.h include/resources.h

HEADERS += $$PUBLIC_HEADERS

SOURCES += src/resource.cpp \
           src/resource-set.cpp \
           src/resources.cpp

OBJECTS_DIR = build
MOC_DIR = build

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

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

INSTALLS       = target headers