aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/imports-conflict/imports-conflict.qbs
blob: 1c6be24bd4bf313e576b5537245b0cfc89a3d4b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
import qbs

Project {
    Product {
        name: "Utils"
    }
    Product {
        Depends { name: "Utils" }
        Depends { name: "themodule" }
    }
}