aboutsummaryrefslogtreecommitdiff
path: root/smolbote.qbs
blob: c178f6b3b2c32fb6aa32ee33e80e0c839f205259 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
import qbs
import "tools/qbs/GitRepo.js" as GitRepo

Project {
    id: project
    // Qt 5.7 has qbs version 1.6.0
    // Qt 5.8 has qbs version 1.7.0
    minimumQbsVersion: "1.6.0"

    property bool gitVersion: true

    // The following define makes your compiler emit warnings if you use any
    // feature of Qt which as been marked as deprecated (the exact warnings
    // depend on your compiler). Please consult the documentation of the
    // deprecated API in order to know how to port your code away from it.
    property bool deprecatedWarnings: true

    // The code also fails to compile if you use APIs deprecated before Qt 5.7.
    property string deprecatedBefore: "0x050700"

    CppApplication {
        id: poi
        name: "poi"
        property stringList defines: []

        Probe {
            id: git
            property string version: ""
            property string describe: ""
            configure: {
                if(project.gitVersion) {
                    var meta = GitRepo.read(project.sourceDirectory);
                    version = meta.version;
                    describe = meta.describe;
                    found = true;
                }
            }
        }

        // enable clazy if using clang
        Properties {
            condition: cpp.compilerName.contains("clang")
            cpp.cxxFlags: ["-Xclang", "-load", "-Xclang", "ClangLazy.so", "-Xclang", "-add-plugin", "-Xclang", "clang-lazy"]
        }
        // global includes
        cpp.includePaths: ['src', 'src/3rd-party']
        // global defines
        cpp.defines: {
            if(project.deprecatedWarnings)
                defines.push("QT_DEPRECATED_WARNINGS", "QT_DISABLE_DEPRECATED_BEFORE="+project.deprecatedBefore);
            return defines;
        }

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

        Group {
            name: "main"
            files: [
                "src/browser.cpp",
                "src/browser.h",
                "src/main.cpp",
            ]
            cpp.defines: {
                if(project.deprecatedWarnings)
                    defines.push("QT_DEPRECATED_WARNINGS", "QT_DISABLE_DEPRECATED_BEFORE="+project.deprecatedBefore);
                if(git.found)
                    defines.push('GIT_VERSION="'+git.version+'"', 'GIT_DESCRIBE="'+git.describe+'"');
                return defines;
            }
        }

        Group {
            name: "Main Window"
            files: [
                "src/mainwindow.cpp",
                "src/mainwindow.h",
                "src/mainwindow.ui",
                "src/forms/aboutdialog.cpp",
                "src/forms/aboutdialog.h",
                "src/forms/aboutdialog.ui",
                "src/widgets/dockingwidget.cpp",
                "src/widgets/dockingwidget.h",
                "src/widgets/loadingbar.cpp",
                "src/widgets/loadingbar.h",
                "src/widgets/urllineedit.cpp",
                "src/widgets/urllineedit.h",
                "src/widgets/webviewtabbar.cpp",
                "src/widgets/webviewtabbar.h",
            ]
        }

        Group {
            name: "bookmarks"
            files: [
                "src/forms/bookmarksform.ui",
                "src/forms/bookmarkswidget.cpp",
                "src/forms/bookmarkswidget.h",
                "src/xbel.cpp",
                "src/xbel.h",
            ]
        }

        Group {
            name: "downloads"
            files: [
                "src/forms/downloadsform.ui",
                "src/forms/downloadswidget.cpp",
                "src/forms/downloadswidget.h",
                "src/widgets/downloaditemform.ui",
                "src/widgets/downloaditemwidget.cpp",
                "src/widgets/downloaditemwidget.h",
            ]
        }

        Group {
            name: "Request Filter"
            files: [
                "src/blocker/blockermanager.cpp",
                "src/blocker/blockermanager.h",
                "src/blocker/filtercollection.cpp",
                "src/blocker/filtercollection.h",
                "src/blocker/filterrule.cpp",
                "src/blocker/filterrule.h",
                "src/blocker/regexp.cpp",
                "src/blocker/regexp.h",
                "src/blocker/subscriptiondialog.ui",
                "src/blocker/subscriptionform.ui",
                "src/webengine/urlinterceptor.cpp",
                "src/webengine/urlinterceptor.h",
            ]
            cpp.defines: {
                if(project.deprecatedWarnings)
                    defines.push("QT_DEPRECATED_WARNINGS", "QT_DISABLE_DEPRECATED_BEFORE="+project.deprecatedBefore);
                defines.push("DEBUG_VERBOSE")
                return defines;
            }
        }

        Group {
            name: "Profile"
            files: [
                "src/forms/cookiesform.cpp",
                "src/forms/cookiesform.h",
                "src/forms/cookiesform.ui",
                "src/forms/profiledialog.cpp",
                "src/forms/profiledialog.h",
                "src/forms/profiledialog.ui",
                "src/webengine/webengineprofile.cpp",
                "src/webengine/webengineprofile.h",
            ]
        }

        files: [
            "data/resources.qrc",
            "src/settings.cpp",
            "src/settings.h",
            "src/webengine/webview.cpp",
            "src/webengine/webview.h",
        ]

        Group {
            name: "Executable"
            fileTagsFilter: product.type
            qbs.install: true
            qbs.installDir: "bin"
        }

        Group {
            name: "Configuration"
            files: [
                "data/poi.toml"
            ]
            qbs.install: true
            qbs.installDir: "share/smolbote"
        }
    }
}