diff options
author | Marvin W <git@larma.de> | 2024-12-31 17:58:01 +0100 |
---|---|---|
committer | Marvin W <git@larma.de> | 2025-02-12 21:23:53 -0600 |
commit | f99f0dee524be9c22f91154668212ba0cd626d0b (patch) | |
tree | 358b2e7664447187d8774aaf1bb4669944e9572d | |
parent | 901dfff081f0cb93a3a4b41d9eb30888deecafdf (diff) | |
download | dino-f99f0dee524be9c22f91154668212ba0cd626d0b.tar.gz dino-f99f0dee524be9c22f91154668212ba0cd626d0b.zip |
Flatpak: Use Meson build
-rw-r--r-- | im.dino.Dino.json | 5 | ||||
-rw-r--r-- | plugins/omemo/meson.build | 1 |
2 files changed, 2 insertions, 4 deletions
diff --git a/im.dino.Dino.json b/im.dino.Dino.json index a2b857f0..f3281572 100644 --- a/im.dino.Dino.json +++ b/im.dino.Dino.json @@ -56,11 +56,8 @@ }, { "name": "dino", - "buildsystem": "cmake-ninja", + "buildsystem": "meson", "builddir": true, - "config-opts": [ - "-DSOUP_VERSION=3" - ], "cleanup": [ "/include", "/share/vala" diff --git a/plugins/omemo/meson.build b/plugins/omemo/meson.build index 5885559f..b25750f7 100644 --- a/plugins/omemo/meson.build +++ b/plugins/omemo/meson.build @@ -10,6 +10,7 @@ dependencies = [ dep_libgcrypt, dep_libqrencode, dep_libsignal_protocol_c, + dep_m, dep_qlite, dep_xmpp_vala, ] |