misc: Implemented an 'all' mode for the Meson build system
This commit is contained in:
committed by
Piotr Esden-Tempski
parent
e1746a04ae
commit
04977998c2
@@ -52,4 +52,10 @@ subdirs = {
|
||||
}
|
||||
|
||||
# Bring in the proper target subdir for the requested target platform
|
||||
subdir(subdirs[target_platform])
|
||||
if target_platform != 'all'
|
||||
subdir(subdirs[target_platform])
|
||||
else
|
||||
foreach subdir_name, subdir_path : subdirs
|
||||
subdir(subdir_path)
|
||||
endforeach
|
||||
endif
|
||||
|
||||
Reference in New Issue
Block a user