imgui-rs/imgui-sys/include_all_imgui.cpp
dbr 2839f76cec Simplify (maybe) the imgui submodules
Use cimgui which avoids the copy-files-into-our-repo step
2021-03-03 14:19:10 +11:00

11 lines
598 B
C++

// This improves build speed by only compiling a single file, and performance by
// allowing the optimizer to inline across separate object files (note that even
// when rust is built with LTO, unless the steps are taken to allow cross-lang
// LTO (tricky), the C/C++ code won't be LTOed).
#include "./third-party/cimgui/imgui/imgui.cpp"
#include "./third-party/cimgui/imgui/imgui_demo.cpp"
#include "./third-party/cimgui/imgui/imgui_draw.cpp"
#include "./third-party/cimgui/imgui/imgui_widgets.cpp"
#include "./third-party/cimgui/imgui/imgui_tables.cpp"
#include "./third-party/cimgui/cimgui.cpp"