9 lines
162 B
Meson
9 lines
162 B
Meson
project('Extract objects from subdirs', 'c')
|
|
|
|
if meson.is_unity()
|
|
message('Unity build: skipping incompatible test')
|
|
else
|
|
subdir('src')
|
|
subdir('tst')
|
|
endif
|