summaryrefslogtreecommitdiff
path: root/glol.pro
diff options
context:
space:
mode:
Diffstat (limited to 'glol.pro')
-rw-r--r--glol.pro38
1 files changed, 38 insertions, 0 deletions
diff --git a/glol.pro b/glol.pro
new file mode 100644
index 0000000..0f1033c
--- /dev/null
+++ b/glol.pro
@@ -0,0 +1,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
+}