aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/98 install all targets/subdir/meson.build
blob: 53c796abe0877dd637dee00606697a999a3b429e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
configure_file(input: 'foo2.in', output: 'foo2.h',
  configuration: {'foo': 'bar'},
  install_dir: get_option('datadir'),
  install: true,
)
custom_target('ct4',
  output: ['out1.txt', 'out2.txt'],
  command: ['script.py', '@OUTPUT@'],
  install_dir: get_option('datadir'),
  install: true,
)
install_headers('foo3-devel.h')
install_data('bar2-devel.h',
  install_dir: get_option('includedir'),
)
executable('app2', 'main.c',
  install: true,
)
both_libraries('both2', 'lib.c',
  install: true,
)