blob: 1daf1b2d5c44605930ae764834917f3bd939a284 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
CONFIG += warn_on qt
TEMPLATE = lib
DESTDIR = $(OPIEDIR)/plugins/applets
TARGET = example
SOURCES = simpleimpl.cpp
HEADERS = simpleimpl.h
INCLUDEPATH += $(OPIEDIR)/include
DEPENDSPATH += $(OPIEDIR)/include
LIBS += -lqpe -lopiecore2 -lopieui2
include( $(OPIEDIR)/include.pro )
|