~mmach/netext73/meson

« back to all changes in this revision

Viewing changes to test cases/unit/97 link full name/libtestprovider/meson.build

  • Committer: mmach
  • Date: 2023-03-15 07:28:10 UTC
  • Revision ID: netbit73@gmail.com-20230315072810-rjs3fs158gp6aup7
dla focal

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
project('libtestprovider','c')
2
 
 
3
 
libtestprovider=static_library('testprovider',
4
 
    files('./provider.c'),
5
 
    install:true,
6
 
    c_args:['-Wall','-Werror'],
7
 
)
8
 
 
9
 
pkg = import('pkgconfig')
10
 
 
11
 
 
12
 
pkg.generate(
13
 
        name:'testprovider',
14
 
        filebase:'libtestprovider',
15
 
        description: 'fortest',
16
 
        requires: [],
17
 
        libraries_private: ['-Wl,--whole-archive'] +
18
 
            ['-L${libdir}','-l:libtestprovider.a']+
19
 
            ['-Wl,--no-whole-archive']
20
 
)