summaryrefslogtreecommitdiffstats
path: root/test cases/failing/46 pkgconfig variables zero length/meson.build
blob: 65d33445cd13ac86b72a3e7922e1a1cff24e3403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
project('variables-zero-length-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 : [ '=value' ]
)