You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When installing msdfgen (and packaging it); all headers are in a subdirectory; for example:
include/msdfgen/msdfgen.h
However; msdf-atlas-gen assumes they're in the root:
#include <msdfgen.h>
This causes problems when trying to neatly package the libraries into tools like Conan. Ofcourse I can move headers around before packaging but that's a little odd.
The text was updated successfully, but these errors were encountered:
That's how I worked around it yes. But that doesn't really work in all circumstances since its non-standard. If you cmake install onto the system directly and then use a findscript; it still wouldn't be able to find them; especially if you throw something like autotools into the mix.
I wouldn't suggest moving the files though; that would just cause clutter. I would suggest to include them as #include <msdfgen/msdfgen.h> in atlas-gen as they are deployed that way.
When installing msdfgen (and packaging it); all headers are in a subdirectory; for example:
include/msdfgen/msdfgen.h
However; msdf-atlas-gen assumes they're in the root:
#include <msdfgen.h>
This causes problems when trying to neatly package the libraries into tools like Conan. Ofcourse I can move headers around before packaging but that's a little odd.
The text was updated successfully, but these errors were encountered: