Compare commits

...

2 Commits

Author SHA1 Message Date
Patrick Wuttke
a99f5b56c2 Merge branch 'stable' of https://git.mewin.de/mewin/spp_recipes into stable 2025-03-27 12:19:58 +01:00
Patrick Wuttke
39693ee87d Added imgui_stdlib.cpp to the ImGui build script. 2025-03-27 12:19:46 +01:00

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', [])):