urho3d
urho3d copied to clipboard
<ik/quat.h> and <ik/vec3.h> #included in <Urho3D/IK/IKConverters.h>, but unavailable
In the latest stable binary download Urho3D-1.7-Windows-64bit-STATIC-3D11.zip
, Urho3DAll.h
#include
s <Urho3D/IK/IKConverters.h>
:
#if URHO3D_IK
//
#include <Urho3D/IK/IKConverters.h>
//
#endif
which in turn #include
s two header files that are nowhere to be found in the ZIP:
#include <ik/quat.h>
#include <ik/vec3.h>
This makes it impossible to compile Arnis Lielturks's Urho3D-Empty-Project:
https://github.com/ArnisLielturks/Urho3D-Empty-Project/blob/8d494bceff86af02a6b63ff8fad345abdfa6322a/Source/Messages/Message.cpp#L1
Although personally I don't like or use that "all-in" header, but since we have auto-generated it and include it as part of our build artifact then we should at least CI test build by using it. So thing like this should surface and fix earlier.
Is there anything I can do about this? Or is this a build system issue?
Marking this stale since there has been no activity for 30 days. It will be closed if there is no activity for another 15 days.