LoginSignup
2
2

More than 5 years have passed since last update.

oF0.9.0でofxTrueTypeFontUCが"freetype2/freetype/freetype.h not found"になるエラー

Last updated at Posted at 2016-02-17

freetype2/freetype/freetype.h not found

0.8.4と0.9.0でfreetypeディレクトリ内の構造が違うので、
ofxTrueTypeFontUC.cppの13行目あたりに書いてある

ofxTrueTypeFontUC.cpp
#include "freetype2/freetype/freetype.h"
#include "freetype2/freetype/ftglyph.h"
#include "freetype2/freetype/ftoutln.h"
#include "freetype2/freetype/fttrigon.h"

ofxTrueTypeFontUC.cpp
#include "freetype.h"
#include "ftglyph.h"
#include "ftoutln.h"
#include "fttrigon.h"

に書き換えると通ります。

参考

Missing OF lib include files

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2