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

« back to all changes in this revision

Viewing changes to src/view/view.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(view.pri)
 
3
 
 
4
TOP_BUILDDIR = $${OUT_PWD}/../..
 
5
VERSION = 0.2.0
 
6
TARGET = $${MALIIT_KEYBOARD_VIEW_TARGET}
 
7
TEMPLATE = lib
 
8
CONFIG += staticlib
 
9
INCLUDEPATH = ../lib
 
10
LIBS += $${TOP_BUILDDIR}/$${MALIIT_KEYBOARD_LIB}
 
11
 
 
12
PRE_TARGETDEPS += $${TOP_BUILDDIR}/$${MALIIT_KEYBOARD_LIB}
 
13
 
 
14
contains(QT_MAJOR_VERSION, 4) {
 
15
    QT = core gui
 
16
} else {
 
17
    QT = core gui widgets
 
18
}
 
19
 
 
20
HEADERS += \
 
21
    setup.h \
 
22
    abstracttexteditor.h \
 
23
    abstractfeedback.h \
 
24
    nullfeedback.h \
 
25
 
 
26
SOURCES += \
 
27
    setup.cpp \
 
28
    abstracttexteditor.cpp \
 
29
    abstractfeedback.cpp \
 
30
    nullfeedback.cpp \
 
31
 
 
32
enable-qt-mobility {
 
33
    HEADERS += soundfeedback.h
 
34
    SOURCES += soundfeedback.cpp
 
35
}
 
36
 
 
37
include(../word-prediction.pri)