aboutsummaryrefslogtreecommitdiff
path: root/test cases/d/3 shared library/meson.build
blob: fc7a0c41040cf218925e54bef145a3c50aba332e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
project('D Shared Library', 'd')

dc = meson.get_compiler('d')
if dc.get_id() == 'gcc'
  if dc.version().version_compare('< 8')
    error('MESON_SKIP_TEST: GDC < 8.0 cannot build shared libraries')
  endif
endif

subdir('sub')
ed = executable('app_d', 'app.d', link_with : ldyn, install : true)
test('linktest_dyn', ed)

# test D attributes for pkg-config
pkgc = import('pkgconfig')
pkgc.generate(name: 'test',
          libraries: ldyn,
          subdirs: 'd/stuff',
          description: 'A test of D attributes to pkgconfig.generate.',
          d_module_versions: ['Use_Static']
)

ldd = find_program('ldd', required : false)
if ldd.found()
  test('ldd-test.py', ed)
endif