diff options
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/formats.lua | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/scripts/src/formats.lua b/scripts/src/formats.lua index 6bb3862a226..9e5b4bf0504 100644 --- a/scripts/src/formats.lua +++ b/scripts/src/formats.lua @@ -69,6 +69,11 @@ project "formats" MAME_DIR .. "src/lib/formats/dfi_dsk.cpp", MAME_DIR .. "src/lib/formats/dfi_dsk.h", MAME_DIR .. "src/lib/formats/fdi_dsk.cpp", + + MAME_DIR .. "src/lib/formats/fsmgr.h", + MAME_DIR .. "src/lib/formats/fsmgr.cpp", + MAME_DIR .. "src/lib/formats/fs_unformatted.h", + MAME_DIR .. "src/lib/formats/fs_unformatted.cpp", } -------------------------------------------------- @@ -1598,10 +1603,10 @@ end -------------------------------------------------- -- ---@src/lib/formats/rc759_dsk.h,FORMATS["RC759_DSK"] = true +--@src/lib/formats/rc759_dsk.h,FORMATS["RC759"] = true -------------------------------------------------- -if opt_tool(FORMATS, "RC759_DSK") then +if (FORMATS["APRIDISK"]~=null or _OPTIONS["with-tools"]) then files { MAME_DIR.. "src/lib/formats/rc759_dsk.cpp", MAME_DIR.. "src/lib/formats/rc759_dsk.h", @@ -2052,4 +2057,16 @@ if opt_tool(FORMATS, "ZX81_P") then } end +-------------------------------------------------- +-- +--@src/lib/formats/fs_prodos.h,FORMATS["FS_PRODOS"] = true +-------------------------------------------------- + +if opt_tool(FORMATS, "FS_PRODOS") then + files { + MAME_DIR.. "src/lib/formats/fs_prodos.cpp", + MAME_DIR.. "src/lib/formats/fs_prodos.h", + } +end + end |