forked from matplotlib/matplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.build
More file actions
24 lines (22 loc) · 690 Bytes
/
meson.build
File metadata and controls
24 lines (22 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
custom_target('matplotlibrc',
command: [
find_program(meson.project_source_root() / 'tools/generate_matplotlibrc.py'),
'@INPUT@',
'@OUTPUT@',
get_option('rcParams-backend')
],
input: 'matplotlibrc',
output: 'matplotlibrc',
install: true,
install_tag: 'data',
install_dir: py3.get_install_dir(subdir: 'matplotlib/mpl-data'))
install_data(
'kpsewhich.lua',
install_tag: 'data',
install_dir: py3.get_install_dir(subdir: 'matplotlib/mpl-data'))
foreach dir : ['fonts', 'images', 'plot_directive', 'sample_data', 'stylelib']
install_subdir(
dir,
install_tag: 'data',
install_dir: py3.get_install_dir(subdir: 'matplotlib/mpl-data'))
endforeach