mesa/src/imgui/meson.build
Lionel Landwerlin d595529475 imgui: update copy and port all tools using it
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Felix DeGrood <felix.j.degrood@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41244>
2026-04-30 10:59:45 +00:00

11 lines
350 B
Meson

libimgui_core = static_library(
'imgui_core',
files('imgui.cpp', 'imgui_draw.cpp', 'imgui_tables.cpp', 'imgui_widgets.cpp'),
cpp_args : cpp.get_supported_arguments('-w', '-Wno-error'),
install : false
)
libimgui_core_dep = declare_dependency(
link_with : libimgui_core,
include_directories : include_directories('.', is_system : true)
)