aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/105 pkgconfig relocatable with absolute path/meson.build
blob: ff2128624b95398cc91ab687e1e23ca12cef652a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
project(
  'pkgconfig-relocatable-with-absolute-path',
  version : '1.0',
  default_options: [
    'pkgconfig.relocatable=true',
  ])

pkgg = import('pkgconfig')

pkgg.generate(
  name : 'libsimple',
  version : '1.0',
  description : 'A simple pkgconfig.',
  install_dir: get_option('prefix')/'share/misc/pkgconfig',
)