summaryrefslogtreecommitdiff
path: root/tests/manual/pluginview/plugins/plugin1/plugin1.qbs
blob: e709f0208ae38a2217ee06120ec1c05c90a9cfa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import qbs.FileInfo

QtcManualtest {
    name: "Manual test plugin1"
    targetName: "plugin1"
    type: [ "dynamiclibrary" ]
    destinationDirectory: FileInfo.cleanPath(FileInfo.joinPaths(base , ".."))

    Depends { name: "ExtensionSystem" }
    Depends { name: "Manual test plugin2"}
    Depends { name: "Manual test plugin3"}

    files: [
        "plugin1.cpp",
        "plugin1.h"
    ]
}