summaryrefslogtreecommitdiffstats
path: root/test cases/common/252 install data structured/meson.build
blob: 9d297943fead7faa340fcd7c0a7f56521791bbd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
project('install structured data')

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')