summaryrefslogtreecommitdiff
path: root/glol.pro
blob: 0f1033cbf55529a243ef01496e94c8a8a5bed2b8 (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
35
36
37
38
QT       += core dbus
QT       -= gui

TARGET = glol
CONFIG   += console
CONFIG   -= app_bundle

unix {
	CONFIG += link_pkgconfig
	PKGCONFIG += contextprovider-1.0 contextsubscriber-1.0
}

TEMPLATE = app

SOURCES += main.cpp \
    fakepropertyadaptor.cpp \
    fakeproperty.cpp

HEADERS += \
    fakepropertyadaptor.h \
    fakeproperty.h

OTHER_FILES += \
    com.javispedro.glol.context \
    qtc_packaging/debian_harmattan/rules \
    qtc_packaging/debian_harmattan/README \
    qtc_packaging/debian_harmattan/copyright \
    qtc_packaging/debian_harmattan/control \
    qtc_packaging/debian_harmattan/compat \
    qtc_packaging/debian_harmattan/changelog

unix:!symbian:!maemo5 {
	target.path = /usr/bin
    INSTALLS += target
	contextfiles.path += /usr/share/contextkit/providers
	contextfiles.files = com.javispedro.glol.context
	INSTALLS += contextfiles
}