aboutsummaryrefslogtreecommitdiff
path: root/libdino/src
diff options
context:
space:
mode:
authorhrxi <hrrrxi@gmail.com>2023-03-20 02:01:22 +0100
committerfiaxh <fiaxh@users.noreply.github.com>2023-03-24 19:32:50 +0100
commit5a90e793ddec723677f2b715b967f29f046e16d2 (patch)
tree6a96f142526990010635607cb547b79b9c3f060e /libdino/src
parentb617bf7cc4ac2aa083bcf889816d0479fa353e10 (diff)
downloaddino-5a90e793ddec723677f2b715b967f29f046e16d2.tar.gz
dino-5a90e793ddec723677f2b715b967f29f046e16d2.zip
First steps of meson support
Basic configuration of qlite, xmpp-vala, the Dino library and the Dino application are supported. There's no support for the plugins. This e.g. enables using the Vala language server.
Diffstat (limited to 'libdino/src')
-rw-r--r--libdino/src/application.vala1
-rw-r--r--libdino/src/version.vala6
2 files changed, 6 insertions, 1 deletions
diff --git a/libdino/src/application.vala b/libdino/src/application.vala
index 490cd40c..5e58e364 100644
--- a/libdino/src/application.vala
+++ b/libdino/src/application.vala
@@ -2,7 +2,6 @@ using Dino.Entities;
namespace Dino {
-extern const string VERSION;
public string get_version() { return VERSION; }
public string get_short_version() {
if (!VERSION.contains("~")) return VERSION;
diff --git a/libdino/src/version.vala b/libdino/src/version.vala
new file mode 100644
index 00000000..0fdc0145
--- /dev/null
+++ b/libdino/src/version.vala
@@ -0,0 +1,6 @@
+// Not used in Meson.
+namespace Dino {
+
+extern const string VERSION;
+
+}