From 711d0d00bde8fbb56a36f72f4664c707a34961a0 Mon Sep 17 00:00:00 2001 From: Ambigapathy Vinayak Date: Thu, 13 Jun 2024 14:37:05 +0200 Subject: [PATCH] modified installer --- src/ToolChaine.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ToolChaine.py b/src/ToolChaine.py index f1916d4..7dc0a68 100644 --- a/src/ToolChaine.py +++ b/src/ToolChaine.py @@ -20,7 +20,7 @@ def verifie_build_tools() -> None: none_tools: str = [] match platform.system(): case "Windows": - none_tools = search_tools(["git", "dotnet", "premake5"]) + none_tools = search_tools(["git", "premake5"]) case "Linux": none_tools = search_tools(["git", "g++", "premake5", "make"]) case _: @@ -42,6 +42,7 @@ def build(config) -> None: match platform.system(): case "Windows": Command.exec("premake5 vs2022") + Log.info("Build with vscode 2022") case "Linux": Command.exec("premake5 gmake2") Command.exec(f"make config={config.lower()}")