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.
15 lines
389 B
15 lines
389 B
10 years ago
|
project('same basename', 'c')
|
||
|
|
||
8 years ago
|
subdir('sharedsub')
|
||
|
subdir('staticsub')
|
||
|
|
||
10 years ago
|
# Use the same source file to check that each top level target
|
||
|
# has its own unique working directory. If they don't
|
||
|
# then the .o files will clobber each other.
|
||
9 years ago
|
|
||
10 years ago
|
exe1 = executable('name', 'exe1.c', link_with : stlib)
|
||
|
exe2 = executable('name2', 'exe2.c', link_with : shlib)
|
||
|
|
||
|
test('static', exe1)
|
||
|
test('shared', exe2)
|