Fixed linker errors of imgui backend on windows

This commit is contained in:
Vladyslav Baranovskyi
2024-05-26 23:16:46 +03:00
parent a5f592dc5c
commit 378be743f8

View File

@@ -7,6 +7,11 @@
#include "Host/GraphicsAppManager.hpp"
#include "ExampleApps/CubesExampleApp.hpp"
// NOTE(vb): I couldn't find a way of linking with imgui_glfw using CMake
#ifdef _WIN32
# include "backends/imgui_impl_glfw.cpp"
#endif
using namespace OpenVulkano;
int main(int argc, char** argv)