Files
third_party_mesa3d/src/imgui/meson.build
Eric Engestrom d90e656fa7 meson: drop intel_ prefix on imgui_core
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>
2019-12-10 15:16:02 +00:00

12 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('.')
)