summaryrefslogtreecommitdiffstats
path: root/test cases/common/24 library versions/subdir/meson.build
blob: a83fdb5a9b583710f7bfd7cdf2bf635e2a1cc649 (plain)
1
2
3
4
5
6
7
8
# Test that using files generated with configure_file as sources works.
# We do this inside a subdir so that the path isn't accidentally correct
# because there is no structure in the build dir.
genlib = configure_file(input : '../lib.c',
  output : 'genlib.c',
  copy: true)
shared_library('genlib', genlib,
  install : false)