mirror of https://github.com/xemu-project/xemu.git
27 lines
438 B
Meson
27 lines
438 B
Meson
project(
|
|
'ImGui Plotting Library',
|
|
'cpp',
|
|
license : 'MIT',
|
|
version : '0.16',
|
|
)
|
|
|
|
imgui_sp = subproject('imgui')
|
|
imgui_dep = imgui_sp.get_variable('imgui_dep')
|
|
|
|
implot_inc = include_directories('.')
|
|
implot_src = files(
|
|
'implot.cpp',
|
|
'implot_items.cpp'
|
|
)
|
|
|
|
implot_lib = library(
|
|
'implot',
|
|
implot_src,
|
|
dependencies: imgui_dep
|
|
)
|
|
|
|
implot_dep = declare_dependency(
|
|
link_with : implot_lib,
|
|
include_directories : implot_inc
|
|
)
|