maint: update Premake5

This commit is contained in:
2025-04-11 11:25:07 +02:00
parent 5a4f180986
commit 6239fb8a10
10 changed files with 12 additions and 10 deletions

2
deps/GSL vendored

Submodule deps/GSL updated: 355982daf6...3325bbd33d

2
deps/asmjit vendored

2
deps/gsc-tool vendored

2
deps/minhook vendored

2
deps/rapidjson vendored

2
deps/zlib vendored

Submodule deps/zlib updated: ef24c4c750...5a82f71ed1

View File

@ -259,7 +259,7 @@ filter "configurations:Release"
buildoptions {"/GL"} buildoptions {"/GL"}
linkoptions {"/IGNORE:4702", "/LTCG"} linkoptions {"/IGNORE:4702", "/LTCG"}
defines {"NDEBUG"} defines {"NDEBUG"}
flags {"FatalCompileWarnings"} fatalwarnings {"All"}
filter {} filter {}
filter "configurations:Debug" filter "configurations:Debug"

View File

@ -26,6 +26,8 @@ namespace steam_proxy
ownership_state state_; ownership_state state_;
utils::binary_resource runner_file(RUNNER, "s1-mod-runner.exe"); utils::binary_resource runner_file(RUNNER, "s1-mod-runner.exe");
bool is_disabled() { return true; }
} }
class component final : public component_interface class component final : public component_interface
@ -33,7 +35,7 @@ namespace steam_proxy
public: public:
void post_load() override void post_load() override
{ {
if (game::environment::is_dedi()) if (game::environment::is_dedi() || is_disabled())
{ {
return; return;
} }