2023-02-10 05:26:58 +01:00
|
|
|
include_dirs = include_directories('.', 'backends')
|
|
|
|
|
|
|
|
sources = ['imgui_demo.cpp', 'imgui_draw.cpp', 'imgui_tables.cpp', 'imgui_widgets.cpp', 'imgui.cpp']
|
|
|
|
if get_option('opengl3').enabled()
|
|
|
|
sources += 'backends/imgui_impl_opengl3.cpp'
|
|
|
|
endif
|
|
|
|
if get_option('dx12').enabled()
|
|
|
|
sources += 'backends/imgui_impl_dx12.cpp'
|
|
|
|
endif
|
|
|
|
if get_option('dx9').enabled()
|
|
|
|
sources += 'backends/imgui_impl_dx9.cpp'
|
|
|
|
endif
|
|
|
|
if get_option('opengl2').enabled()
|
|
|
|
sources += 'backends/imgui_impl_opengl2.cpp'
|
|
|
|
endif
|
|
|
|
if get_option('glut').enabled()
|
|
|
|
sources += 'backends/imgui_impl_glut.cpp'
|
2023-02-15 06:25:32 +01:00
|
|
|
sources += 'backends/GL/freeglut.cpp'
|
2023-02-10 05:26:58 +01:00
|
|
|
endif
|
|
|
|
if get_option('dx11').enabled()
|
|
|
|
sources += 'backends/imgui_impl_dx11.cpp'
|
|
|
|
endif
|
|
|
|
if get_option('win32').enabled()
|
|
|
|
sources += 'backends/imgui_impl_win32.cpp'
|
|
|
|
endif
|
|
|
|
if get_option('sdl').enabled()
|
|
|
|
sources += 'backends/imgui_impl_sdl.cpp'
|
|
|
|
endif
|
|
|
|
if get_option('glfw').enabled()
|
|
|
|
sources += 'backends/imgui_impl_glfw.cpp'
|
|
|
|
endif
|
|
|
|
if get_option('dx10').enabled()
|
|
|
|
sources += 'backends/imgui_impl_dx10.cpp'
|
|
|
|
endif
|
|
|
|
if get_option('allegro5').enabled()
|
|
|
|
sources += 'backends/imgui_impl_allegro5.cpp'
|
|
|
|
endif
|
|
|
|
if get_option('vulkan').enabled()
|
|
|
|
sources += 'backends/imgui_impl_vulkan.cpp'
|
|
|
|
endif
|
|
|
|
if get_option('marmalade').enabled()
|
|
|
|
sources += 'backends/imgui_impl_marmalade.cpp'
|
|
|
|
endif
|
|
|
|
if get_option('osx').enabled()
|
|
|
|
sources += 'backends/imgui_impl_osx.mm'
|
|
|
|
endif
|
|
|
|
if get_option('metal').enabled()
|
|
|
|
sources += 'backends/imgui_impl_metal.mm'
|
|
|
|
endif
|
|
|
|
|
|
|
|
imgui = static_library('imgui',
|
|
|
|
sources,
|
|
|
|
dependencies: [
|
|
|
|
# TODO: add other dependencies
|
|
|
|
dependency('vulkan', required: get_option('vulkan')),
|
|
|
|
dependency('glfw3', required: get_option('glfw')),
|
|
|
|
dependency('sdl', required: get_option('sdl')),
|
2023-02-14 08:09:08 +01:00
|
|
|
# dependency('glut', required: get_option('glut')),
|
2023-02-10 05:26:58 +01:00
|
|
|
],
|
|
|
|
include_directories: include_dirs,
|
|
|
|
)
|
|
|
|
|
|
|
|
imgui_dep = declare_dependency(include_directories: include_dirs, link_with: imgui)
|