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.
14 lines
390 B
14 lines
390 B
project('test spec', 'c') |
|
|
|
rpm = import('rpm') |
|
dependency('zlib') |
|
find_program('nonexistprog', required : false) |
|
|
|
lib = shared_library('mesontest_shared', ['lib.c', 'lib.h'], |
|
version : '0.1', soversion : '0', |
|
install : true) |
|
executable('mesontest-bin', 'main.c', |
|
link_with : lib, |
|
install : true) |
|
|
|
rpm.generate_spec_template()
|
|
|