blob: 3efd31e746a7351b8f96338ee5344316954de276 (
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
include ( $(OPIEDIR)/include.pro )
|