mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 17:30:20 +01:00
Again, no real effect, just the name of a temporary build file. Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
11 lines
271 B
Meson
11 lines
271 B
Meson
libimgui_core = static_library(
|
|
'imgui_core',
|
|
files('imgui.cpp', 'imgui_draw.cpp', 'imgui_widgets.cpp'),
|
|
cpp_args : ['-w'],
|
|
install : false
|
|
)
|
|
|
|
libimgui_core_dep = declare_dependency(
|
|
link_with : libimgui_core,
|
|
include_directories : include_directories('.')
|
|
)
|