aboutsummaryrefslogtreecommitdiff
path: root/src/smolbote.qbs
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-02-17 17:11:33 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2017-02-17 17:11:33 +0100
commita8a168ec6ccfa3a8ec4243ebf0ccaaf86a13b2a2 (patch)
tree9f1d9c4a79816a7e9003935362ca79d19304c5c6 /src/smolbote.qbs
parentAdded deprecated API warnings (diff)
downloadsmolbote-a8a168ec6ccfa3a8ec4243ebf0ccaaf86a13b2a2.tar.xz
Moved smolbote.qbs
Diffstat (limited to 'src/smolbote.qbs')
-rw-r--r--src/smolbote.qbs104
1 files changed, 0 insertions, 104 deletions
diff --git a/src/smolbote.qbs b/src/smolbote.qbs
deleted file mode 100644
index 439014c..0000000
--- a/src/smolbote.qbs
+++ /dev/null
@@ -1,104 +0,0 @@
-import qbs
-import "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.
-
- // The code also fails to compile if you use APIs deprecated before Qt 5,7.
- property bool deprecatedWarnings: true
-
- CppApplication {
- id: poi
- name: "poi"
- property stringList defines: []
-
- Probe {
- id: git
- property string version: "1.0.0"
- property string describe: "1.0.0-0-00000000"
- configure: {
- if(project.gitVersion) {
- var meta = GitRepo.read(project.sourceDirectory);
- version = meta.version;
- describe = meta.describe;
- }
- found = true;
- }
- }
-
- cpp.includePaths: ['.']
- cpp.defines: {
- if(project.deprecatedWarnings)
- defines.push("QT_DEPRECATED_WARNINGS", "QT_DISABLE_DEPRECATED_BEFORE=0x050700");
- if(git.found)
- defines.push('VERSION="'+git.version+'"');
- return defines;
- }
-
- files: [
- "browser.cpp",
- "browser.h",
- "data/icon.svg",
- "data/resources.qrc",
- "forms/blockerdialog.cpp",
- "forms/blockerdialog.h",
- "forms/blockerdialog.ui",
- "forms/bookmarksdialog.cpp",
- "forms/bookmarksdialog.h",
- "forms/bookmarksdialog.ui",
- "forms/downloaddialog.cpp",
- "forms/downloaddialog.h",
- "forms/downloaddialog.ui",
- "forms/profiledialog.cpp",
- "forms/profiledialog.h",
- "forms/profiledialog.ui",
- "main.cpp",
- "mainwindow.cpp",
- "mainwindow.h",
- "mainwindow.ui",
- "settings.cpp",
- "settings.h",
- "webengine/blockerrule.cpp",
- "webengine/blockerrule.h",
- "webengine/blockersubscription.cpp",
- "webengine/blockersubscription.h",
- "webengine/downloaditemform.cpp",
- "webengine/downloaditemform.h",
- "webengine/downloaditemform.ui",
- "webengine/regexp.cpp",
- "webengine/regexp.h",
- "webengine/urlinterceptor.cpp",
- "webengine/urlinterceptor.h",
- "webengine/webengineprofile.cpp",
- "webengine/webengineprofile.h",
- "webengine/webview.cpp",
- "webengine/webview.h",
- "widgets/loadingbar.cpp",
- "widgets/loadingbar.h",
- "widgets/urllineedit.cpp",
- "widgets/urllineedit.h",
- "widgets/webviewtabbar.cpp",
- "widgets/webviewtabbar.h",
- "xbel/xbel.cpp",
- "xbel/xbel.h",
- ]
-
- Depends { name: "Qt"; submodules: ["core", "widgets", "webengine", "webenginewidgets"] }
-
- // Properties for the produced executable
- Group {
- fileTagsFilter: product.type // filter selects produced executable
- qbs.install: true // install it
- }
- }
-}