mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-16 20:38:06 +02:00
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>
11 lines
350 B
Meson
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)
|
|
)
|