~timo-jyrinki/ubuntu/trusty/maliit-framework/fix_qt52

« back to all changes in this revision

Viewing changes to examples/apps/settings/settings.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
 
TEMPLATE = app
2
 
TARGET = maliit-exampleapp-settings
3
 
 
4
 
OBJECTS_DIR = .obj
5
 
MOC_DIR = .moc
6
 
 
7
 
DEPENDPATH += .
8
 
 
9
 
BUILD_TYPE = unittest
10
 
 
11
 
contains(QT_MAJOR_VERSION, 4) {
12
 
    QT += core gui
13
 
} else {
14
 
    QT += core gui widgets
15
 
}
16
 
 
17
 
contains(BUILD_TYPE, skeleton) {
18
 
    CONFIG += link_pkgconfig
19
 
    PKGCONFIG += maliit-settings
20
 
    INCLUDEPATH += $$system(pkg-config --cflags maliit-settings | tr \' \' \'\\n\' | grep ^-I | cut -d I -f 2-)
21
 
}
22
 
 
23
 
contains(BUILD_TYPE, unittest) {
24
 
    include(../../../config.pri)
25
 
    target.path = $$BINDIR
26
 
    INSTALLS += target
27
 
 
28
 
    # Used for testing purposes, can be deleted when used as a project skeleton
29
 
    # Build against in-tree libs
30
 
    TOP_DIR = ../../..
31
 
    include($$TOP_DIR/common/libmaliit-common.pri)
32
 
    include($$TOP_DIR/maliit/libmaliit.pri)
33
 
    include($$TOP_DIR/maliit-settings/libmaliit-settings.pri)
34
 
}
35
 
 
36
 
# The .cpp file which was generated for your project. Feel free to hack it.
37
 
SOURCES += \
38
 
    main.cpp \
39
 
    mainwindow.cpp \
40
 
    stringentryedit.cpp \
41
 
    selectentrycombobox.cpp \
42
 
    boolentrycheckbox.cpp \
43
 
 
44
 
HEADERS += \
45
 
    mainwindow.h \
46
 
    stringentryedit.h \
47
 
    selectentrycombobox.h \
48
 
    boolentrycheckbox.h \
49
 
 
50
 
QMAKE_CLEAN += maliit-exampleapp-settings