Added imgui_stdlib.cpp to the ImGui build script.

This commit is contained in:
Patrick Wuttke 2025-03-27 12:19:39 +01:00
parent 54b4bb8232
commit 39693ee87d

View File

@ -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.cpp'),
os.path.join(repo['checkout_root'], 'imgui_draw.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_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', [])): for backend in chain(env.get('IMGUI_BACKENDS', []), options.get('backends', [])):