Original Post
Well, after compiling the .a in Linux, I brought it over to DevC++ and linked it right in there... But I keep getting this... [Linker error] undefined reference to `FTGLTextureFont::FTGLTextureFont(char const*)' I have no idea why! I even tried the Windows Visual C++ version and I still get the same error. Please help! Code:
#ifndef GUI_FONT_WRAPPERNESS_
#define GUI_FONT_WRAPPERNESS_
#include <FTGLTextureFont.h>
class CFont {
FTFont *font;
public:
CFont(const char *FileName) { font = new FTGLTextureFont(FileName); };
};
#endif