As it is pointless to build ROMs/BIOS for user-only emulation,
restrict this directory to system-mode emulation.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
meson.build | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/meson.build b/meson.build
index e484670c5b7..457a07047b1 100644
--- a/meson.build
+++ b/meson.build
@@ -2378,7 +2378,9 @@
subdir('scripts')
subdir('tools')
-subdir('pc-bios')
+if have_system
+ subdir('pc-bios')
+endif
subdir('docs')
subdir('tests')
if gtk.found()