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.
19 lines
363 B
19 lines
363 B
8 years ago
|
project('vertest', 'c')
|
||
|
|
||
|
shared_library('nover', 'versioned.c')
|
||
|
|
||
|
shared_library('verset', 'versioned.c',
|
||
|
version : '4.5.6')
|
||
|
|
||
|
shared_library('soverset', 'versioned.c',
|
||
|
soversion : '1.2.3')
|
||
|
|
||
|
shared_library('bothset', 'versioned.c',
|
||
|
soversion : '1.2.3',
|
||
|
version : '4.5.6')
|
||
|
|
||
|
shared_library('settosame', 'versioned.c',
|
||
|
soversion : '7.8.9',
|
||
|
version : '7.8.9')
|
||
|
|