aboutsummaryrefslogtreecommitdiff
path: root/src/lib/downloads/downloads.qbs
blob: bdb18ad00fd91ffceb51f175707dc92a39d103ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import qbs 1.0

Project {
    name: "downloads"

    StaticLibrary {
        id: downloads
        name: "downloads"

        cpp.includePaths: ['.', '../..']

        Depends {
            name: "Qt"
            submodules: ["core", "widgets", "webenginewidgets"]
        }

        files: [
            "downloadsform.ui",
            "downloadswidget.cpp",
            "downloadswidget.h",
            "widgets/downloaditemform.ui",
            "widgets/downloaditemwidget.cpp",
            "widgets/downloaditemwidget.h",
            "widgets/elidedlabel.cpp",
            "widgets/elidedlabel.h",
        ]
    }
}