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.
8 lines
209 B
8 lines
209 B
4 years ago
|
project('prelinking', 'c')
|
||
|
|
||
|
liba = static_library('prelinked', 'file1.c', 'file2.c', 'file3.c', 'file4.c',
|
||
|
prelink: true)
|
||
|
exe = executable('testprog', 'main.c',
|
||
|
link_with: liba)
|
||
|
test('prelinked', exe)
|