Hi,
I’m trying to add a custom font to my project, and whilst searching online through other threads, I came across the ability to add the font into Projucer, then use the following:
Font getLabelFont(Label &) override
{
return Font(Typeface::createSystemTypefaceFor(BinaryData::robotoblack_ttf, BinaryData::robotoblack_ttfSize));
}
This method is is constructed in my custom slider class.
However, it displays an error saying: Use of undeclared ‘BinaryData’.
Is the the current / correct way of using a custom font? Or have I missed a step
Thanks in advance 
