diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-10-23 03:58:33 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-10-23 03:58:33 +0200 |
commit | 6673ba53c17bb1ab99a1e7629156d99452213747 (patch) | |
tree | 70cf515693ed51c5537dc5fb178e5d938862bd35 /src | |
parent | AdblockRule constructor (diff) | |
download | smolbote-6673ba53c17bb1ab99a1e7629156d99452213747.tar.xz |
Initial meson build files
Diffstat (limited to 'src')
-rw-r--r-- | src/meson.build | 34 | ||||
-rw-r--r-- | src/version.h.in | 14 |
2 files changed, 34 insertions, 14 deletions
diff --git a/src/meson.build b/src/meson.build new file mode 100644 index 0000000..83ef998 --- /dev/null +++ b/src/meson.build @@ -0,0 +1,34 @@ +# poi +poi_moc = qt5.preprocess( + moc_headers: [], + ui_files: ['mainwindow/mainwindow.ui', 'mainwindow/widgets/searchform.ui'], + qresources: '../data/resources.qrc', + dependencies: dep_qt5 +) + +poi = executable('poi', install: true, + dependencies: [dep_qt5, dep_boost, dep_breakpad, dep_SingleApplication, + dep_about, dep_addressbar, dep_bookmarks, dep_configuration, dep_downloads, dep_urlfilter, dep_web], + cpp_args : '-DQAPPLICATION_CLASS=QApplication', + include_directories: [include, genheader_inc, lib_inc, thirdparty_inc], + sources: ['main.cpp', poi_moc, + 'browser.cpp', 'browser.h', + 'session.cpp', 'session.h', + 'util.cpp', 'util.h', + + 'mainwindow/mainwindow.cpp', 'mainwindow/mainwindow.h', + 'mainwindow/widgets/dockwidget.cpp', 'mainwindow/widgets/dockwidget.h', + 'mainwindow/widgets/navigationbar.cpp', 'mainwindow/widgets/navigationbar.h', + 'mainwindow/widgets/searchform.cpp', 'mainwindow/widgets/searchform.h', + + 'subwindow/subwindow.cpp', 'subwindow/subwindow.h', + 'subwindow/tabwidget.cpp', 'subwindow/tabwidget.h', + + 'webengine/filter.cpp', 'webengine/filter.h', + 'webengine/urlinterceptor.cpp', 'webengine/urlinterceptor.h', + 'webengine/webpage.cpp', 'webengine/webpage.h', + 'webengine/webview.cpp', 'webengine/webview.h', + + 'wallet/wallet.cpp', 'wallet/wallet.h'] +) + diff --git a/src/version.h.in b/src/version.h.in deleted file mode 100644 index c31c4a8..0000000 --- a/src/version.h.in +++ /dev/null @@ -1,14 +0,0 @@ -#ifndef SMOLBOTE_VERSION_H -#define SMOLBOTE_VERSION_H - -// Version: 1.2.3 -#cmakedefine poi_Version "@poi_Version@" - -// Describe: 1.2.3-r123-0123456789ab -#cmakedefine poi_Describe "@poi_Describe@" - -// Build -#cmakedefine poi_Build "@poi_Build@" - -#endif // SMOLBOTE_VERSION_H - |