forked from linuxmint/warpinator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
meson.build
22 lines (18 loc) · 797 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
##################### When tagging a new version, add a release entry
##################### to data/org.x.Warpinator.appdata.xml.in.in
project('warpinator', 'c', version: '1.0.8', meson_version: '>=0.45.0')
#####################
#####################
i18n = import('i18n')
gettext_package = meson.project_name()
locale_dir = join_paths(get_option('prefix'), get_option('localedir'))
install_datadir = join_paths(get_option('prefix'), get_option('datadir'), 'warpinator')
install_libdir = join_paths(get_option('prefix'), get_option('libexecdir'), 'warpinator')
install_bindir = join_paths(get_option('prefix'), get_option('bindir'))
include_firewall_mod = get_option('include-firewall-mod')
subdir('data')
subdir('src')
subdir('bin')
subdir('po')
subdir('resources')
subdir('install-scripts')