summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-02-29 04:49:56 +1100
committer Vas Crabb <vas@vastheman.com>2020-02-29 04:49:56 +1100
commit001389f05294942b6ed9e11c5bec794765534e87 (patch)
tree9c17075c7085a2aff747dc58eab26f77901e27d5 /scripts/src
parent7514b42c5415390789c3f2b612e59c008c240846 (diff)
Remove src2html tool (nw)
This tool was previously used to generate HTML-formatted source for the website from releases. It hasn't been used in years, since we rely on the repository browsing features of GitHub/GitLab/SourceForge. It also hasn't been updated to handle C++14, Lua, and other changes to the source. If we do want to publish source code on our own web site in the future, we'd be better off using an off-the-shelf library to handle parsing the source.
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/tools.lua40
1 files changed, 0 insertions, 40 deletions
diff --git a/scripts/src/tools.lua b/scripts/src/tools.lua
index 09f8739e30a..add62c0f84b 100644
--- a/scripts/src/tools.lua
+++ b/scripts/src/tools.lua
@@ -365,46 +365,6 @@ configuration { }
strip()
--------------------------------------------------
--- src2html
---------------------------------------------------
-
-project("src2html")
-uuid ("b31e963a-09ef-4696-acbd-e663e35ce6f7")
-kind "ConsoleApp"
-
-flags {
- "Symbols", -- always include minimum symbols for executables
-}
-
-if _OPTIONS["SEPARATE_BIN"]~="1" then
- targetdir(MAME_DIR)
-end
-
-links {
- "utils",
- ext_lib("expat"),
- "ocore_" .. _OPTIONS["osd"],
- ext_lib("zlib"),
- ext_lib("utf8proc"),
-}
-
-includedirs {
- MAME_DIR .. "src/osd",
- MAME_DIR .. "src/lib/util",
-}
-
-files {
- MAME_DIR .. "src/tools/src2html.cpp",
-}
-
-configuration { "mingw*" or "vs*" }
- targetextension ".exe"
-
-configuration { }
-
-strip()
-
---------------------------------------------------
-- split
--------------------------------------------------