~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to src/shared/qbs/tests/auto/blackbox/testdata/subprojects/subproject2/subproject3/subproject3.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
1
import qbs
 
2
import LibraryType
2
3
 
3
4
Project {
4
5
    condition: false
5
6
    property string libNameSuffix: "blubb"
6
 
    DynamicLibrary {
 
7
    Product {
7
8
        name: project.libNamePrefix + project.libNameSuffix
 
9
        type: LibraryType.type()
8
10
        Depends { name: "cpp" }
9
 
        Depends { name: "Qt.core" }
 
11
        Depends { name: "QtCoreDepender" }
10
12
        cpp.defines: "MY_EXPORT=Q_DECL_EXPORT"
11
13
        files: "testlib.cpp"
12
14
        Export { Depends { name: "Qt.core" } }