aboutsummaryrefslogtreecommitdiff
path: root/meson.build
blob: 444335e102608b347314ff8a7f54cbfe1a3758b5 (plain) (blame)
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
project('dino', 'vala', 'c')

fs = import('fs')
python = import('python')

dep_gcrypt = dependency('libgcrypt')
dep_gdk_pixbuf = dependency('gdk-pixbuf-2.0')
dep_gee = dependency('gee-0.8')
dep_gio = dependency('gio-2.0')
dep_glib = dependency('glib-2.0')
dep_gmodule = dependency('gmodule-2.0')
dep_gspell = dependency('gspell-1')
dep_gtk3 = dependency('gtk+-3.0')
dep_icu_uc = dependency('icu-uc')
dep_libhandy = dependency('libhandy-1')
dep_m = meson.get_compiler('c').find_library('m', required: false)
dep_sqlite3 = dependency('sqlite3', version: '>=3.24')
dep_soup2 = dependency('libsoup-2.4')
dep_soup3 = dependency('libsoup-3.0')
dep_libsignal_protocol_c = dependency('libsignal-protocol-c', version: '>=2.3.2')

prog_git = find_program('git', required: false)
prog_python = python.find_installation()

subdir('qlite')
subdir('xmpp-vala')
subdir('libdino')
subdir('main')
subdir('plugins')