aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/76 pkgconfig prefixes/val2/meson.build
blob: ce69481ec945fc43d39650520b61fdb4b2ce7ea6 (plain)
1
2
3
4
5
6
7
8
project('val2', 'c')
val1_dep = dependency('val1')
val2 = shared_library('val2', 'val2.c',
  dependencies : [val1_dep],
  install: true)
install_headers('val2.h')
pkgconfig = import('pkgconfig')
pkgconfig.generate(val2, libraries : ['-Wl,-rpath,${libdir}'])