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

« back to all changes in this revision

Viewing changes to .pc/0002-ubuntu_session_type.patch/passthroughserver/passthroughserver.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
TEMPLATE = app
 
6
TARGET = $$MALIIT_SERVER
 
7
target.path = $$BINDIR
 
8
DEPENDPATH += .
 
9
 
 
10
include($$TOP_DIR/src/libmaliit-plugins.pri)
 
11
include($$TOP_DIR/common/libmaliit-common.pri)
 
12
include($$TOP_DIR/connection/libmaliit-connection.pri)
 
13
 
 
14
SOURCES += main.cpp
 
15
 
 
16
QT += core gui
 
17
 
 
18
# coverage flags are off per default, but can be turned on via qmake COV_OPTION=on
 
19
for(OPTION,$$list($$lower($$COV_OPTION))){
 
20
    isEqual(OPTION, on){
 
21
        QMAKE_CXXFLAGS += -ftest-coverage -fprofile-arcs -fno-elide-constructors
 
22
        LIBS += -lgcov
 
23
    }
 
24
}
 
25
 
 
26
QMAKE_CLEAN += *.gcno *.gcda
 
27
 
 
28
INSTALLS += target
 
29
 
 
30
QMAKE_EXTRA_TARGETS += check-xml
 
31
check-xml.target = check-xml
 
32
check-xml.depends += $$TARGET
 
33
 
 
34
QMAKE_EXTRA_TARGETS += check
 
35
check.target = check
 
36
check.depends += $$TARGET