1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

gg: disable freetype on ios for now

This commit is contained in:
Alexander Medvednikov 2020-07-08 21:48:09 +02:00
parent b8d762df97
commit e3581c5cf6

View File

@ -165,6 +165,14 @@ FONS_DEF void fonsDrawDebug(FONScontext* s, float x, float y);
#undef FONS_USE_FREETYPE
#endif
#ifdef __APPLE__
#include "TargetConditionals.h"
#if TARGET_OS_IPHONE
#undef FONS_USE_FREETYPE
#endif
#endif
#ifdef FONS_USE_FREETYPE
#include <ft2build.h>