From 39693ee87da7d1c1d73094f93037cfa73c665c03 Mon Sep 17 00:00:00 2001 From: Patrick Wuttke Date: Thu, 27 Mar 2025 12:19:39 +0100 Subject: [PATCH] Added imgui_stdlib.cpp to the ImGui build script. --- recipes/imgui/recipe.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes/imgui/recipe.py b/recipes/imgui/recipe.py index c357069..767f9f5 100644 --- a/recipes/imgui/recipe.py +++ b/recipes/imgui/recipe.py @@ -23,7 +23,8 @@ def _git_cook(env: Environment, repo: dict, options: dict) -> dict: os.path.join(repo['checkout_root'], 'imgui.cpp'), os.path.join(repo['checkout_root'], 'imgui_draw.cpp'), os.path.join(repo['checkout_root'], 'imgui_tables.cpp'), - os.path.join(repo['checkout_root'], 'imgui_widgets.cpp') + os.path.join(repo['checkout_root'], 'imgui_widgets.cpp'), + os.path.join(repo['checkout_root'], 'misc/cpp/imgui_stdlib.cpp') ] for backend in chain(env.get('IMGUI_BACKENDS', []), options.get('backends', [])):