From a9632c24698cbfcbd9c8aa97638334d9061e592c Mon Sep 17 00:00:00 2001 From: Prabhu Subramanian Date: Tue, 25 Feb 2025 13:16:29 +0000 Subject: [PATCH] Switch to uv. Deleted unwanted directories Signed-off-by: Prabhu Subramanian --- blint_db/handlers/language_handlers/meson_handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blint_db/handlers/language_handlers/meson_handler.py b/blint_db/handlers/language_handlers/meson_handler.py index a596f33..5223d85 100644 --- a/blint_db/handlers/language_handlers/meson_handler.py +++ b/blint_db/handlers/language_handlers/meson_handler.py @@ -36,8 +36,8 @@ def get_project_list(self): def meson_build(project_name): - setup_command = f"meson setup -Dwraps={project_name}".split(" ") - meson_setup = subprocess.run(setup_command, cwd=os.path.join(WRAPDB_LOCATION, "build", project_name), check=False, env=os.environ.copy(), shell=sys.platform == "win32", encoding="utf-8") + setup_command = f"meson setup build/{project_name} -Dwraps={project_name}".split(" ") + meson_setup = subprocess.run(setup_command, cwd=WRAPDB_LOCATION, check=False, env=os.environ.copy(), shell=sys.platform == "win32", encoding="utf-8") subprocess_run_debug(meson_setup, project_name) compile_command = "meson compile".split(" ") meson_compile = subprocess.run(compile_command, cwd=os.path.join(WRAPDB_LOCATION, "build", project_name), check=False, env=os.environ.copy(), shell=sys.platform == "win32", encoding="utf-8")