summaryrefslogtreecommitdiffstats
path: root/test cases/failing/92 custom target install data/meson.build
blob: 00d348cc0e8275c3962daea52906f9eceaab7129 (plain)
1
2
3
4
5
6
7
8
9
10
11
project('custom target install data')

preproc = find_program('preproc.py')

t = custom_target('Info.plist',
    command: [preproc, '@INPUT@', '@OUTPUT@'],
    input: 'Info.plist.cpp',
    output: 'Info.plist',
)

install_data(t)