~michael-sheldon/ubuntu/utopic/maliit-framework/fix-orientation-updates

« back to all changes in this revision

Viewing changes to maliit/maliit.pro

  • Committer: Package Import Robot
  • Author(s): Ricardo Salveti de Araujo, Sergio Schvezov, Ricardo Salveti de Araujo
  • Date: 2013-07-23 19:47:04 UTC
  • mfrom: (1.1.2) (1.2.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130723194704-1lsy1kmlda069cea
Tags: 0.99.0+git20130615+97e8335-0ubuntu1
[ Sergio Schvezov ]
* New build from HEAD 97e8335.
* Packaging import from lp:phablet-extras/maliit-framework.

[ Ricardo Salveti de Araujo ]
* debian/control: adding vcs and fixing dependencies
* General package cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
include(../config.pri)
2
 
 
3
 
TOP_DIR = ..
4
 
 
5
 
VERSION = $$MALIIT_ABI_VERSION
6
 
TEMPLATE = lib
7
 
TARGET = $$TOP_DIR/lib/$${MALIIT_LIB}
8
 
 
9
 
include($$TOP_DIR/connection/libmaliit-connection.pri)
10
 
INCLUDEPATH += .. ../common
11
 
 
12
 
QT = core gui
13
 
 
14
 
OBJECTS_DIR = .obj
15
 
MOC_DIR = .moc
16
 
 
17
 
HEADERSINSTALL = \
18
 
    preeditinjectionevent.h \
19
 
    inputmethod.h \
20
 
    attributeextension.h \
21
 
 
22
 
HEADERS += \
23
 
    $$HEADERSINSTALL \
24
 
    preeditinjectionevent_p.h \
25
 
    inputmethod_p.h \
26
 
    attributeextension_p.h \
27
 
    attributeextensionregistry_p.h \
28
 
    attributeextensionregistry.h \
29
 
 
30
 
SOURCES += \
31
 
    preeditinjectionevent.cpp \
32
 
    inputmethod.cpp \
33
 
    attributeextension.cpp \
34
 
    attributeextensionregistry.cpp \
35
 
 
36
 
target.path += $$LIBDIR
37
 
 
38
 
headers.path += $$INCLUDEDIR/$$MALIIT_HEADER/maliit
39
 
headers.files += $$HEADERSINSTALL
40
 
 
41
 
outputFiles(maliit.pc)
42
 
 
43
 
OTHER_FILES += \
44
 
    maliit.pc.in
45
 
 
46
 
install_pkgconfig.path = $${LIBDIR}/pkgconfig
47
 
install_pkgconfig.files = $$OUT_PWD/maliit.pc
48
 
 
49
 
INSTALLS += \
50
 
    target \
51
 
    headers \
52
 
    install_pkgconfig \
53
 
 
54
 
# coverage flags are off per default, but can be turned on via qmake COV_OPTION=on
55
 
for(OPTION,$$list($$lower($$COV_OPTION))){
56
 
    isEqual(OPTION, on){
57
 
        QMAKE_CXXFLAGS += -ftest-coverage -fprofile-arcs -fno-elide-constructors
58
 
        LIBS += -lgcov
59
 
    }
60
 
}
61
 
 
62
 
QMAKE_CLEAN += $$OBJECTS_DIR/*.gcno $$OBJECTS_DIR/*.gcda
63
 
 
64
 
OTHER_FILES += \
65
 
    libmaliit.pri