aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/rename-target-artifact/rename.qbs
blob: 27f91841a18139b29b05244707860412f5efbc75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import qbs

Project {
    CppApplication {
        Depends { name: "TheLib" }
        cpp.defines: "MY_EXPORT="
        files: "main.cpp"
    }

    DynamicLibrary {
        name: "TheLib"
        targetName: "the_lib"
        Depends { name: "cpp" }
        cpp.defines: "MY_EXPORT=EXPORT"
        files: "lib.cpp"
        bundle.isBundle: false
    }
}