blob: b659ab53ae3e6cddf077aa2e0019bf40788a18d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
TEMPLATE = lib
CONFIG += qt plugin warn_on release
HEADERS = dvorak.h \
dvorakimpl.h
SOURCES = dvorak.cpp \
dvorakimpl.cpp
TARGET = qdvorak
DESTDIR = ../../plugins/inputmethods
INCLUDEPATH += $(OPIEDIR)/include
DEPENDPATH += ../../launcher
LIBS += -lqpe -L$(OPIEDIR)/plugins/inputmethods -lqpickboard
QMAKE_LFLAGS += -Wl,-rpath,/opt/QtPalmtop/plugins/inputmethods
VERSION = 1.0.0
include( $(OPIEDIR)/include.pro )
target.path = $$prefix/plugins/inputmethods
|