summaryrefslogtreecommitdiff
path: root/glol.pro
blob: 2cb225dba910b1e822407639a359752c8fec9494 (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
39
40
41
42
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 \
    faker.cpp

HEADERS += \
    fakepropertyadaptor.h \
    fakeproperty.h \
    faker.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
}