Replies: 1 comment 2 replies
-
The install currently works for the Core module. Other modules are currently intended to be used with CMake at the moment. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am experiencing several issues with Diligent Engine when not using it under CMake. I compiled Diligent Engine into a DLL through CMake's install target and encountered the following problems:
After compiling the Tool, there are no header files for NativeApp. It seems that NativeApp is not included in the install compilation.
For instance, the header file directory is include/DiligentTool/ImGui/xxx. In these header files, third-party libraries like ImGui are included directly using #include "Imgui.h". This causes issues in my build system as it cannot find these header files, making the resolution process somewhat cumbersome. Similarly, many other files directly include headers from different directories. I need to add directories like DiligentCore/GraphicsEngine/interface/ to my include dir individually. Is there a more efficient solution to this?
Beta Was this translation helpful? Give feedback.
All reactions