~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to src/libs/qtcomponents/styleitem/styleitem.qbs

  • Committer: Timo Jyrinki
  • Date: 2013-11-15 12:25:23 UTC
  • mfrom: (1.1.28)
  • Revision ID: timo.jyrinki@canonical.com-20131115122523-i2kyamsu4gs2mu1m
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import qbs.base 1.0
2
 
import "../../../../qbs/defaults.js" as Defaults
3
 
 
4
 
DynamicLibrary {
5
 
    name: "styleplugin"
6
 
 
7
 
    Depends { name: "cpp" }
8
 
    Depends { name: "Qt"; submodules: ["core", "widgets", "declarative", "script"] }
9
 
 
10
 
    cpp.defines: Defaults.defines(qbs)
11
 
 
12
 
    files: [
13
 
        "qdeclarativefolderlistmodel.cpp",
14
 
        "qdeclarativefolderlistmodel.h",
15
 
        "qrangemodel.cpp",
16
 
        "qrangemodel.h",
17
 
        "qrangemodel_p.h",
18
 
        "qstyleitem.cpp",
19
 
        "qstyleitem.h",
20
 
        "qstyleplugin.cpp",
21
 
        "qstyleplugin.h",
22
 
        "qtmenu.cpp",
23
 
        "qtmenu.h",
24
 
        "qtmenubar.cpp",
25
 
        "qtmenubar.h",
26
 
        "qtmenuitem.cpp",
27
 
        "qtmenuitem.h",
28
 
        "qwheelarea.cpp",
29
 
        "qwheelarea.h",
30
 
    ]
31
 
 
32
 
    Group {
33
 
        fileTagsFilter: product.type
34
 
        qbs.install: true
35
 
        qbs.installDir: (qbs.targetOS.contains("windows") ? "lib/qtcreator" : project.ide_library_path)
36
 
                        + "/qtcomponents/plugin"
37
 
    }
38
 
}