summaryrefslogtreecommitdiff
path: root/test cases/common/252 install data structured/meson.build
blob: 483474712e49511797e0bb5ec2e2c4aef588c96f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
project('install structured data', default_options: ['python.bytecompile=-1'])

install_data(
    'dir1/file1',
    'dir1/file2',
    'dir1/file3',
    'dir2/file1',
    'dir2/file2',
    'dir2/file3',
    'dir3/file1',
    'dir3/file2',
    'dir3/file3',
    install_dir: get_option('datadir'),
    preserve_path: true,
)
subdir('pysrc')