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 we build with --features bundled, we need to add this to the harfbuzz-sys/build.rs:
if cfg!(feature = "freetype") {
cfg.define("HAVE_FREETYPE", "1");
}
Unfortunately, this will fail as we need to set up additional build flags for the build to find freetype (and this is even more unfriendly on Windows).
This gets a bit annoying when freetype is in the default features ...
The text was updated successfully, but these errors were encountered:
When we build with
--features bundled
, we need to add this to theharfbuzz-sys/build.rs
:Unfortunately, this will fail as we need to set up additional build flags for the build to find freetype (and this is even more unfriendly on Windows).
This gets a bit annoying when
freetype
is in the default features ...The text was updated successfully, but these errors were encountered: