aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/failing/49 pkgconfig variables not key value/meson.build
blob: 02fa7376f3e4620b5cce2ae3547db2907a39122c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
project('variables-not-key-value-test', 'c', version : '1.0')

pkgg = import('pkgconfig')
lib = shared_library('simple', 'simple.c')
libver = '1.0'
h = install_headers('simple.h')

pkgg.generate(
  libraries : [lib, '-lz'],
  subdirs : '.',
  version : libver,
  name : 'libsimple',
  filebase : 'simple',
  description : 'A simple demo library.',
  variables : [ 'this_should_be_key_value' ]
)