The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
240 B
12 lines
240 B
5 years ago
|
project('link order test', 'c')
|
||
|
|
||
|
dep = library('dependency', [])
|
||
|
lib = static_library('something', [], link_with: dep)
|
||
|
|
||
|
import('pkgconfig').generate(
|
||
|
name: 'libsomething',
|
||
|
description: 'test library',
|
||
|
libraries: lib,
|
||
|
version: '1'
|
||
|
)
|