diff options
author | 2024-11-27 00:39:05 +0700 | |
---|---|---|
committer | 2024-11-27 04:39:05 +1100 | |
commit | dc8ba812c1099cb34f419bce0c7cc5eaf5aa3dc0 (patch) | |
tree | 1fcb248af8c820c9831fa461ae7148d413a6f9d7 /scripts/src/main.lua | |
parent | 5b1adf3db9362e205f4b242afd0f42a461a72e22 (diff) |
Updated GENie and changed Visual Studio target to Visual Studio 2022. (#13000)
* Updated to GENie 1181.
* Applied local fix for GENie resource include directory bug, sent upstream as bkaradzic/GENie#572.
* Set MSVC flags to use conformant preprocessor, standards conformance mode, and assume UTF-8 encoding.
Diffstat (limited to 'scripts/src/main.lua')
-rw-r--r-- | scripts/src/main.lua | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/src/main.lua b/scripts/src/main.lua index 0192d849676..d5f94bb60bd 100644 --- a/scripts/src/main.lua +++ b/scripts/src/main.lua @@ -220,14 +220,6 @@ end GEN_DIR .. "resource", } - configuration { "vs20*"} - -- See https://github.com/bkaradzic/GENie/issues/544 - includedirs { - MAME_DIR .. "scripts/resources/windows/" .. _target, - GEN_DIR .. "resource", - } - configuration { } - if (STANDALONE==true) then standalone(); @@ -269,12 +261,6 @@ if (STANDALONE~=true) then resincludedirs { MAME_DIR .. "scripts/resources/windows/mame", } - configuration { "vs20*"} - -- See https://github.com/bkaradzic/GENie/issues/544 - includedirs { - MAME_DIR .. "scripts/resources/windows/mame", - } - configuration { } end local mainfile = MAME_DIR .. "src/" .. _target .. "/" .. _subtarget .. ".cpp" |