summaryrefslogtreecommitdiffstats
path: root/test cases/unit/52 pkgconfig static link order/meson.build
blob: 31449e5e31c1767daa8e069daa4ed03791681ba3 (plain)
1
2
3
4
5
6
7
8
9
10
11
project('link order test', 'c')

dep = library('dependency', 'dummy.c')
lib = static_library('something', 'dummy.c', link_with: dep)

import('pkgconfig').generate(
  name: 'libsomething',
  description: 'test library',
  libraries: lib,
  version: '1'
)