~mmach/netext73/meson

« back to all changes in this revision

Viewing changes to test cases/common/207 install name_prefix name_suffix/meson.build

  • Committer: mmach
  • Date: 2020-04-09 10:35:04 UTC
  • Revision ID: netbit73@gmail.com-20200409103504-wkxbh6yl5fzlueas
0.53.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
project('library with name_prefix name_suffix test', 'c')
2
 
 
3
 
shared_library('foo', 'libfile.c', name_prefix: '', install : true)
4
 
static_library('bar', 'libfile.c', name_prefix: '', install : true)
5
 
 
6
 
shared_library('baz', 'libfile.c', name_suffix: 'cheese', install : true)
7
 
static_library('qux', 'libfile.c', name_suffix: 'cheese', install : true)
8
 
 
9
 
shared_library('corge', 'libfile.c', name_prefix: 'bow', name_suffix: 'stern', install : true)
10
 
static_library('grault', 'libfile.c', name_prefix: 'bow', name_suffix: 'stern', install : true)