forked from maoschanz/drawing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
32 lines (23 loc) · 830 Bytes
/
meson.build
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
30
31
32
project(
'drawing',
version: '1.2.0-dev',
meson_version: '>= 0.50',
)
app_uuid = 'com.github.maoschanz.drawing'
# Dependencies #################################################################
# TODO the proper way to check python3 libs dependencies is this:
# https://mesonbuild.com/Python-module.html#dependency but the doc is quite bad
# so i've no idea how to make it work
################################################################################
# Will be used in po and data
if get_option('enable-translations-and-appdata')
i18n = import('i18n')
endif
# Will be used in help and src
gnome = import('gnome')
subdir('data')
subdir('src')
subdir('po')
subdir('help')
meson.add_install_script('build-aux/meson/postinstall.py')
################################################################################