Skip to content

Commit

Permalink
disable the emoji support now
Browse files Browse the repository at this point in the history
  • Loading branch information
frinkr committed Sep 2, 2017
1 parent 6a361d7 commit d3bd179
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set(CMAKE_OSX_DEPLOYMENT_TARGET "10.11")

if(BUILD_FREETYPE_HARFBUZZ)
set(ENV{PKG_CONFIG_PATH} "$ENV{PKG_CONFIG_PATH}:${CMAKE_SOURCE_DIR}/pkgconfig")
option(WITH_PNG "Freetype: Build with PNG" ON)
option(WITH_PNG "Freetype: Build with PNG" OFF)
add_subdirectory(harfbuzz-icu-freetype)
endif()

Expand Down
4 changes: 2 additions & 2 deletions font-tool/Typeface.mm
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
#include FT_SIZES_H
#include FT_MULTIPLE_MASTERS_H

#ifndef FT_CONFIG_OPTION_USE_PNG
#error "Enable PNG to use colour fonts"
#if !defined(FT_CONFIG_OPTION_USE_PNG) || !defined(TT_CONFIG_OPTION_EMBEDDED_BITMAPS)
#warning "Enable PNG & embedded bitmap to use colour fonts"
#endif

static int FT_DEFAULT_FONTSIZE = 24 * 4;
Expand Down

0 comments on commit d3bd179

Please sign in to comment.