diff options
author | 2020-03-26 12:54:28 +1100 | |
---|---|---|
committer | 2020-03-26 12:54:28 +1100 | |
commit | 75e0ed7918a4656755a08bdb7025af579615e033 (patch) | |
tree | 7e5061afb9d701862e2f27369a4019e8cd5fdb13 /docs/release/scripts/src/tools.lua | |
parent | 053c04ffc930159c538bcd77dd3255c74cdd2951 (diff) |
0.220 Release filestag220
Diffstat (limited to 'docs/release/scripts/src/tools.lua')
-rw-r--r-- | docs/release/scripts/src/tools.lua | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/docs/release/scripts/src/tools.lua b/docs/release/scripts/src/tools.lua index 09f8739e30a..283b53f1b2c 100644 --- a/docs/release/scripts/src/tools.lua +++ b/docs/release/scripts/src/tools.lua @@ -133,15 +133,6 @@ files { configuration { "mingw*" or "vs*" } targetextension ".exe" --- workaround for https://developercommunity.visualstudio.com/content/problem/752372/vs2019-v1631-c-internal-compiler-error-when-zi-opt.html --- should be fixed in 16.5 -configuration { "Debug", "vs2019" } - if _OPTIONS["vs"]==nil then - flags { - "NoEditAndContinue", - } - end - configuration { } strip() @@ -365,46 +356,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 -------------------------------------------------- @@ -758,15 +709,6 @@ files { configuration { "mingw*" or "vs*" } targetextension ".exe" --- workaround for https://developercommunity.visualstudio.com/content/problem/752372/vs2019-v1631-c-internal-compiler-error-when-zi-opt.html --- should be fixed in 16.5 -configuration { "Debug", "vs2019" } - if _OPTIONS["vs"]==nil then - flags { - "NoEditAndContinue", - } - end - configuration { } strip() |