~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to src/shared/qbs/tests/manual/qrc2/i.qbs

  • Committer: Timo Jyrinki
  • Date: 2013-12-02 09:16:15 UTC
  • mfrom: (1.1.29)
  • Revision ID: timo.jyrinki@canonical.com-20131202091615-xbj1os1f604ber1m
New upstream release candidate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import qbs 1.0
2
 
 
3
 
Project {
4
 
    Product {
5
 
        type: "application"
6
 
        name: "i"
7
 
 
8
 
        Depends {
9
 
            name: "Qt.core"
10
 
        }
11
 
 
12
 
        files: [
13
 
            "bla.cpp",
14
 
            "bla.qrc",
15
 
            "foo.qrc",
16
 
            "stuff.txt"
17
 
        ]
18
 
    }
19
 
}