~michael-sheldon/ubuntu-keyboard/fix-oxide-dismiss-test

« back to all changes in this revision

Viewing changes to src/plugin/plugin.pro

  • Committer: Thomas Moenicke
  • Date: 2013-07-19 12:05:07 UTC
  • Revision ID: thomas.moenicke@canonical.com-20130719120507-lzw5oq50xm567x0j
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include(../config.pri)
 
2
include(../config-plugin.pri)
 
3
include(../view/view.pri)
 
4
 
 
5
TOP_BUILDDIR = $${OUT_PWD}/../../
 
6
TARGET = $${MALIIT_KEYBOARD_PLUGIN_TARGET}
 
7
TEMPLATE = lib
 
8
LIBS += $${TOP_BUILDDIR}/$${MALIIT_KEYBOARD_VIEW_LIB} $${TOP_BUILDDIR}/$${MALIIT_KEYBOARD_LIB} -lubuntu_application_api
 
9
PRE_TARGETDEPS += $${TOP_BUILDDIR}/$${MALIIT_KEYBOARD_VIEW_LIB} $${TOP_BUILDDIR}/$${MALIIT_KEYBOARD_LIB}
 
10
INCLUDEPATH += ../lib ../
 
11
DEFINES += MALIIT_DEFAULT_PROFILE=\\\"$$MALIIT_DEFAULT_PROFILE\\\"
 
12
 
 
13
contains(QT_MAJOR_VERSION, 4) {
 
14
    QT = core gui
 
15
} else {
 
16
    QT = core gui widgets quick qml
 
17
}
 
18
 
 
19
CONFIG += \
 
20
    plugin \
 
21
 
 
22
HEADERS += \
 
23
    plugin.h \
 
24
    inputmethod.h \
 
25
    editor.h \
 
26
    updatenotifier.h \
 
27
    maliitcontext.h \
 
28
 
 
29
SOURCES += \
 
30
    plugin.cpp \
 
31
    inputmethod.cpp \
 
32
    editor.cpp \
 
33
    updatenotifier.cpp \
 
34
    maliitcontext.cpp \
 
35
 
 
36
target.path += $${MALIIT_PLUGINS_DIR}
 
37
INSTALLS += target
 
38
 
 
39
include(../word-prediction.pri)