blob: 32a1e4f0fe92c8ee8ecb19045c4d05e296dde131 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
TEMPLATE = lib
CONFIG -= moc
CONFIG += qt
# Input
HEADERS = exampleplugin.h examplepluginimpl.h examplepluginwidget.h
SOURCES = exampleplugin.cpp examplepluginimpl.cpp examplepluginwidget.cpp
INCLUDEPATH += $(OPIEDIR)/include
DEPENDPATH += $(OPIEDIR)/include
LIBS+= -lqpe -lopieui2
DESTDIR = $(OPIEDIR)/plugins/today
TARGET = todayexampleplugin
include ( $(OPIEDIR)/include.pro )
|