aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/rename-product/rename.qbs
blob: aa59d965063c7f7826a5e364f0f569b3f0893acd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Project {
    CppApplication {
        Depends { name: "TheLib" }
        cpp.defines: "MY_EXPORT="
        files: "main.cpp"
    }

    DynamicLibrary {
        name: "TheLib"
        Depends { name: "cpp" }
        cpp.defines: "MY_EXPORT=DLL_EXPORT"
        files: "lib.cpp"
        Properties {
            condition: qbs.targetOS.includes("darwin")
            bundle.isBundle: false
        }
    }
}