2022-09-06 12:02:04 +02:00
cmake_minimum_required ( VERSION 3.12 )
2020-08-11 22:21:07 +02:00
project ( harfbuzz )
2021-04-01 19:47:18 +02:00
message ( WARN "HarfBuzz has a Meson port and tries to migrate all the other build systems to it, please consider using it as we might remove our cmake port soon." )
2020-08-11 22:21:07 +02:00
## Limit framework build to Xcode generator
if ( BUILD_FRAMEWORK )
# for a framework build on macOS, use:
# cmake -DBUILD_FRAMEWORK=ON -Bbuild -H. -GXcode && cmake --build build
if ( NOT "${CMAKE_GENERATOR}" STREQUAL "Xcode" )
message ( FATAL_ERROR
" Y o u s h o u l d u s e X c o d e g e n e r a t o r w i t h B U I L D _ F R A M E W O R K e n a b l e d " )
endif ( )
set ( CMAKE_OSX_ARCHITECTURES "$(ARCHS_STANDARD_32_64_BIT)" )
set ( CMAKE_MACOSX_RPATH ON )
set ( BUILD_SHARED_LIBS ON )
endif ( )
## Disallow in-source builds, as CMake generated make files can collide with autotools ones
if ( NOT MSVC AND "${PROJECT_BINARY_DIR}" STREQUAL "${PROJECT_SOURCE_DIR}" )
message ( FATAL_ERROR
"
I n - s o u r c e b u i l d s a r e n o t p e r m i t t e d ! M a k e a s e p a r a t e f o l d e r f o r "
" b u i l d i n g , e . g . , "
"
m k d i r b u i l d ; c d b u i l d ; c m a k e . . "
"
B e f o r e t h a t , r e m o v e t h e f i l e s c r e a t e d b y t h i s f a i l e d r u n w i t h "
"
r m - r f C M a k e C a c h e . t x t C M a k e F i l e s " )
endif ( )
## HarfBuzz build configurations
option ( HB_HAVE_FREETYPE "Enable freetype interop helpers" OFF )
option ( HB_HAVE_GRAPHITE2 "Enable Graphite2 complementary shaper" OFF )
option ( HB_HAVE_GLIB "Enable glib unicode functions" OFF )
option ( HB_HAVE_ICU "Enable icu unicode functions" OFF )
2022-01-11 13:14:44 +01:00
if ( TARGET freetype )
set ( HB_HAVE_FREETYPE ON )
add_definitions ( -DHAVE_FREETYPE=1 )
endif ( )
2020-08-11 22:21:07 +02:00
if ( APPLE )
option ( HB_HAVE_CORETEXT "Enable CoreText shaper backend on macOS" ON )
set ( CMAKE_MACOSX_RPATH ON )
endif ( )
if ( WIN32 )
option ( HB_HAVE_UNISCRIBE "Enable Uniscribe shaper backend on Windows" OFF )
option ( HB_HAVE_GDI "Enable GDI integration helpers on Windows" OFF )
option ( HB_HAVE_DIRECTWRITE "Enable DirectWrite shaper backend on Windows" OFF )
endif ( )
option ( HB_BUILD_UTILS "Build harfbuzz utils, needs cairo, freetype, and glib properly be installed" OFF )
if ( HB_BUILD_UTILS )
set ( HB_HAVE_GLIB ON )
set ( HB_HAVE_FREETYPE ON )
endif ( )
option ( HB_BUILD_SUBSET "Build harfbuzz-subset" ON )
option ( HB_HAVE_GOBJECT "Enable GObject Bindings" OFF )
if ( HB_HAVE_GOBJECT )
set ( HB_HAVE_GLIB ON )
endif ( )
option ( HB_HAVE_INTROSPECTION "Enable building introspection (.gir/.typelib) files" OFF )
if ( HB_HAVE_INTROSPECTION )
set ( HB_HAVE_GOBJECT ON )
set ( HB_HAVE_GLIB ON )
endif ( )
include_directories ( AFTER
$ { P R O J E C T _ S O U R C E _ D I R } / s r c
$ { P R O J E C T _ B I N A R Y _ D I R } / s r c
)
# We need PYTHON_EXECUTABLE to be set for running the tests...
include ( FindPythonInterp )
## Functions and headers
include ( CheckFunctionExists )
include ( CheckIncludeFile )
2022-07-06 19:22:38 +02:00
include ( CheckIncludeFiles )
2020-08-11 22:21:07 +02:00
macro ( check_funcs ) # Similar to AC_CHECK_FUNCS of autotools
foreach ( func_name ${ ARGN } )
string ( TOUPPER ${ func_name } definition_to_add )
check_function_exists ( ${ func_name } HAVE_ ${ definition_to_add } )
if ( ${ HAVE_${definition_to_add } } )
add_definitions ( -DHAVE_ ${ definition_to_add } )
endif ( )
endforeach ( )
endmacro ( )
if ( UNIX )
list ( APPEND CMAKE_REQUIRED_LIBRARIES m )
endif ( )
check_funcs ( atexit mprotect sysconf getpagesize mmap isatty )
check_include_file ( unistd.h HAVE_UNISTD_H )
if ( ${ HAVE_UNISTD_H } )
add_definitions ( -DHAVE_UNISTD_H )
endif ( )
check_include_file ( sys/mman.h HAVE_SYS_MMAN_H )
if ( ${ HAVE_SYS_MMAN_H } )
add_definitions ( -DHAVE_SYS_MMAN_H )
endif ( )
check_include_file ( stdbool.h HAVE_STDBOOL_H )
if ( ${ HAVE_STDBOOL_H } )
add_definitions ( -DHAVE_STDBOOL_H )
endif ( )
2022-09-06 12:02:04 +02:00
# These will be used while making pkg-config .pc files
set ( PC_REQUIRES_PRIV "" )
set ( PC_LIBS_PRIV "" )
2021-09-15 15:31:32 +02:00
if ( NOT MSVC )
set ( THREADS_PREFER_PTHREAD_FLAG ON )
find_package ( Threads )
if ( CMAKE_USE_PTHREADS_INIT )
add_definitions ( "-DHAVE_PTHREAD" )
list ( APPEND THIRD_PARTY_LIBS Threads::Threads )
2022-09-06 12:02:04 +02:00
list ( APPEND PC_LIBS_PRIV -pthread )
2021-09-15 15:31:32 +02:00
endif ( )
2021-03-01 20:43:32 +01:00
endif ( )
2020-08-11 22:21:07 +02:00
if ( MSVC )
add_definitions ( -wd4244 -wd4267 -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_WARNINGS )
endif ( )
## Detect if we are running inside a distribution or regular repository folder
# if (EXISTS "${PROJECT_SOURCE_DIR}/ChangeLog")
# # perhaps we are on dist directory
# set (IN_HB_DIST TRUE)
# #set (HB_VERSION_H "${PROJECT_SOURCE_DIR}/src/hb-version.h")
# endif ()
## Extract variables from Makefile files
function ( extract_make_variable variable makefile_source )
string ( REGEX MATCH "${variable} = ([^$]+)\\$" temp "${makefile_source}" )
string ( REGEX MATCHALL "[^ \n\t\\]+" listVar "${CMAKE_MATCH_1}" )
set ( ${ variable } ${ listVar } PARENT_SCOPE )
endfunction ( )
# https://stackoverflow.com/a/27630120
function ( add_prefix_to_list var prefix )
set ( listVar "" )
foreach ( f ${ ${var } } )
list ( APPEND listVar "${prefix}${f}" )
endforeach ( )
set ( ${ var } "${listVar}" PARENT_SCOPE )
endfunction ( )
file ( READ ${ PROJECT_SOURCE_DIR } /src/Makefile.sources SRCSOURCES )
file ( READ ${ PROJECT_SOURCE_DIR } /util/Makefile.sources UTILSOURCES )
extract_make_variable ( HB_BASE_headers ${ SRCSOURCES } )
add_prefix_to_list ( HB_BASE_headers "${PROJECT_SOURCE_DIR}/src/" )
extract_make_variable ( HB_SUBSET_sources ${ SRCSOURCES } )
add_prefix_to_list ( HB_SUBSET_sources "${PROJECT_SOURCE_DIR}/src/" )
extract_make_variable ( HB_SUBSET_headers ${ SRCSOURCES } )
add_prefix_to_list ( HB_SUBSET_headers "${PROJECT_SOURCE_DIR}/src/" )
extract_make_variable ( HB_BASE_RAGEL_GENERATED_sources ${ SRCSOURCES } )
#if (IN_HB_DIST)
add_prefix_to_list ( HB_BASE_RAGEL_GENERATED_sources "${PROJECT_SOURCE_DIR}/src/" )
#else ()
# add_prefix_to_list(HB_BASE_RAGEL_GENERATED_sources "${PROJECT_BINARY_DIR}/src/")
#endif ()
extract_make_variable ( HB_VIEW_sources ${ UTILSOURCES } )
add_prefix_to_list ( HB_VIEW_sources "${PROJECT_SOURCE_DIR}/util/" )
extract_make_variable ( HB_SHAPE_sources ${ UTILSOURCES } )
add_prefix_to_list ( HB_SHAPE_sources "${PROJECT_SOURCE_DIR}/util/" )
extract_make_variable ( HB_SUBSET_CLI_sources ${ UTILSOURCES } )
add_prefix_to_list ( HB_SUBSET_CLI_sources "${PROJECT_SOURCE_DIR}/util/" )
extract_make_variable ( HB_OT_SHAPE_CLOSURE_sources ${ UTILSOURCES } )
add_prefix_to_list ( HB_OT_SHAPE_CLOSURE_sources "${PROJECT_SOURCE_DIR}/util/" )
file ( READ configure.ac CONFIGUREAC )
string ( REGEX MATCH "\\[(([0-9]+)\\.([0-9]+)\\.([0-9]+))\\]" HB_VERSION_MATCH ${ CONFIGUREAC } )
set ( HB_VERSION ${ CMAKE_MATCH_1 } )
set ( HB_VERSION_MAJOR ${ CMAKE_MATCH_2 } )
set ( HB_VERSION_MINOR ${ CMAKE_MATCH_3 } )
set ( HB_VERSION_MICRO ${ CMAKE_MATCH_4 } )
## Define sources and headers of the project
set ( project_sources ${ PROJECT_SOURCE_DIR } /src/harfbuzz.cc ) # use amalgam source
set ( subset_project_sources ${ HB_SUBSET_sources } )
set ( project_extra_sources )
set ( project_headers ${ HB_BASE_headers } )
set ( subset_project_headers ${ HB_SUBSET_headers } )
## Find and include needed header folders and libraries
2022-01-11 13:14:44 +01:00
if ( HB_HAVE_FREETYPE AND NOT TARGET freetype )
2020-08-11 22:21:07 +02:00
include ( FindFreetype )
if ( NOT FREETYPE_FOUND )
message ( FATAL_ERROR "HB_HAVE_FREETYPE was set, but we failed to find it. Maybe add a CMAKE_PREFIX_PATH= to your Freetype2 install prefix" )
endif ( )
list ( APPEND THIRD_PARTY_LIBS ${ FREETYPE_LIBRARIES } )
include_directories ( AFTER ${ FREETYPE_INCLUDE_DIRS } )
add_definitions ( -DHAVE_FREETYPE=1 )
list ( APPEND project_headers ${ PROJECT_SOURCE_DIR } /src/hb-ft.h )
# So check_funcs can find its headers
set ( CMAKE_REQUIRED_INCLUDES ${ CMAKE_REQUIRED_INCLUDES } ${ FREETYPE_INCLUDE_DIRS } )
set ( CMAKE_REQUIRED_LIBRARIES ${ CMAKE_REQUIRED_LIBRARIES } ${ FREETYPE_LIBRARIES } )
check_funcs ( FT_Get_Var_Blend_Coordinates FT_Set_Var_Blend_Coordinates FT_Done_MM_Var )
endif ( )
2022-09-06 12:02:04 +02:00
if ( HB_HAVE_FREETYPE )
list ( APPEND PC_REQUIRES_PRIV "freetype2 >= 12.0.6" )
endif ( )
2020-08-11 22:21:07 +02:00
if ( HB_HAVE_GRAPHITE2 )
add_definitions ( -DHAVE_GRAPHITE2 )
find_path ( GRAPHITE2_INCLUDE_DIR graphite2/Font.h )
find_library ( GRAPHITE2_LIBRARY graphite2 )
include_directories ( ${ GRAPHITE2_INCLUDE_DIR } )
list ( APPEND project_headers ${ PROJECT_SOURCE_DIR } /src/hb-graphite2.h )
list ( APPEND THIRD_PARTY_LIBS ${ GRAPHITE2_LIBRARY } )
2022-09-06 12:02:04 +02:00
list ( APPEND PC_REQUIRES_PRIV "graphite2 >= 1.2.0" )
2020-08-11 22:21:07 +02:00
mark_as_advanced ( GRAPHITE2_INCLUDE_DIR GRAPHITE2_LIBRARY )
endif ( )
if ( HB_HAVE_GLIB )
add_definitions ( -DHAVE_GLIB )
# https://github.com/WebKit/webkit/blob/master/Source/cmake/FindGLIB.cmake
find_package ( PkgConfig )
pkg_check_modules ( PC_GLIB QUIET glib-2.0 )
find_library ( GLIB_LIBRARIES NAMES glib-2.0 HINTS ${ PC_GLIB_LIBDIR } ${ PC_GLIB_LIBRARY_DIRS } )
find_path ( GLIBCONFIG_INCLUDE_DIR NAMES glibconfig.h HINTS ${ PC_LIBDIR } ${ PC_LIBRARY_DIRS } ${ PC_GLIB_INCLUDEDIR } ${ PC_GLIB_INCLUDE_DIRS } PATH_SUFFIXES glib-2.0/include )
find_path ( GLIB_INCLUDE_DIR NAMES glib.h HINTS ${ PC_GLIB_INCLUDEDIR } ${ PC_GLIB_INCLUDE_DIRS } PATH_SUFFIXES glib-2.0 )
include_directories ( ${ GLIBCONFIG_INCLUDE_DIR } ${ GLIB_INCLUDE_DIR } )
list ( APPEND project_headers ${ PROJECT_SOURCE_DIR } /src/hb-glib.h )
list ( APPEND THIRD_PARTY_LIBS ${ GLIB_LIBRARIES } )
2022-09-06 12:02:04 +02:00
list ( APPEND PC_REQUIRES_PRIV "glib-2.0 >= 2.19.1" )
2020-08-11 22:21:07 +02:00
mark_as_advanced ( GLIB_LIBRARIES GLIBCONFIG_INCLUDE_DIR GLIB_INCLUDE_DIR )
endif ( )
if ( HB_HAVE_ICU )
add_definitions ( -DHAVE_ICU )
2020-10-17 18:32:41 +02:00
# https://github.com/WebKit/webkit/blob/fdd7733f2f30eab7fe096a9791f98c60f62f49c0/Source/cmake/FindICU.cmake
2020-08-11 22:21:07 +02:00
find_package ( PkgConfig )
pkg_check_modules ( PC_ICU QUIET icu-uc )
find_path ( ICU_INCLUDE_DIR NAMES unicode/utypes.h HINTS ${ PC_ICU_INCLUDE_DIRS } ${ PC_ICU_INCLUDEDIR } )
find_library ( ICU_LIBRARY NAMES libicuuc cygicuuc cygicuuc32 icuuc HINTS ${ PC_ICU_LIBRARY_DIRS } ${ PC_ICU_LIBDIR } )
include_directories ( ${ ICU_INCLUDE_DIR } )
list ( APPEND project_headers ${ PROJECT_SOURCE_DIR } /src/hb-icu.h )
list ( APPEND THIRD_PARTY_LIBS ${ ICU_LIBRARY } )
mark_as_advanced ( ICU_INCLUDE_DIR ICU_LIBRARY )
endif ( )
if ( APPLE AND HB_HAVE_CORETEXT )
# Apple Advanced Typography
add_definitions ( -DHAVE_CORETEXT )
list ( APPEND project_headers ${ PROJECT_SOURCE_DIR } /src/hb-coretext.h )
if ( HB_IOS )
find_library ( COREFOUNDATION CoreFoundation )
if ( COREFOUNDATION )
list ( APPEND THIRD_PARTY_LIBS ${ COREFOUNDATION } )
2022-09-06 12:02:04 +02:00
list ( APPEND PC_LIBS_PRIV "-framework CoreFoundation" )
2020-08-11 22:21:07 +02:00
endif ( )
mark_as_advanced ( COREFOUNDATION )
find_library ( CORETEXT CoreText )
if ( CORETEXT )
list ( APPEND THIRD_PARTY_LIBS ${ CORETEXT } )
2022-09-06 12:02:04 +02:00
list ( APPEND PC_LIBS_PRIV "-framework CoreText" )
2020-08-11 22:21:07 +02:00
endif ( )
mark_as_advanced ( CORETEXT )
find_library ( COREGRAPHICS CoreGraphics )
if ( COREGRAPHICS )
list ( APPEND THIRD_PARTY_LIBS ${ COREGRAPHICS } )
2022-09-06 12:02:04 +02:00
list ( APPEND PC_LIBS_PRIV "-framework CoreGraphics" )
2020-08-11 22:21:07 +02:00
endif ( )
mark_as_advanced ( COREGRAPHICS )
else ( )
find_library ( APPLICATION_SERVICES_FRAMEWORK ApplicationServices )
if ( APPLICATION_SERVICES_FRAMEWORK )
list ( APPEND THIRD_PARTY_LIBS ${ APPLICATION_SERVICES_FRAMEWORK } )
2022-09-06 12:02:04 +02:00
list ( APPEND PC_LIBS_PRIV "-framework ApplicationServices" )
2020-08-11 22:21:07 +02:00
endif ( )
mark_as_advanced ( APPLICATION_SERVICES_FRAMEWORK )
endif ( )
endif ( )
if ( WIN32 AND HB_HAVE_GDI )
add_definitions ( -DHAVE_GDI )
list ( APPEND project_headers ${ PROJECT_SOURCE_DIR } /src/hb-gdi.h )
list ( APPEND THIRD_PARTY_LIBS gdi32 )
2022-09-06 12:02:04 +02:00
list ( APPEND PC_LIBS_PRIV -lgdi32 )
2020-08-11 22:21:07 +02:00
endif ( )
if ( WIN32 AND HB_HAVE_UNISCRIBE )
add_definitions ( -DHAVE_UNISCRIBE )
list ( APPEND project_headers ${ PROJECT_SOURCE_DIR } /src/hb-uniscribe.h )
list ( APPEND THIRD_PARTY_LIBS usp10 gdi32 rpcrt4 )
2022-09-06 12:02:04 +02:00
list ( APPEND PC_LIBS_PRIV -lusp10 -lgdi32 -lrpcrt4 )
2020-08-11 22:21:07 +02:00
endif ( )
if ( WIN32 AND HB_HAVE_DIRECTWRITE )
2022-07-06 19:22:38 +02:00
if ( CMAKE_VERSION VERSION_GREATER 3.12 )
check_include_files ( "windows.h;dwrite_1.h" HAVE_DWRITE_1_H LANGUAGE CXX )
else ( )
check_include_files ( "windows.h;dwrite_1.h" HAVE_DWRITE_1_H )
endif ( )
if ( NOT HAVE_DWRITE_1_H )
2022-07-06 17:52:29 +02:00
message ( FATAL_ERROR "DirectWrite was enabled explicitly, but required header is missing" )
2022-07-06 19:22:38 +02:00
endif ( )
2020-08-11 22:21:07 +02:00
add_definitions ( -DHAVE_DIRECTWRITE )
list ( APPEND project_headers ${ PROJECT_SOURCE_DIR } /src/hb-directwrite.h )
endif ( )
if ( HB_HAVE_GOBJECT )
2020-12-09 05:24:18 +01:00
add_definitions ( -DHAVE_GOBJECT )
2020-08-11 22:21:07 +02:00
include ( FindPerl )
# Use the hints from glib-2.0.pc to find glib-mkenums
find_package ( PkgConfig )
pkg_check_modules ( PC_GLIB QUIET glib-2.0 )
find_program ( GLIB_MKENUMS glib-mkenums
H I N T S $ { P C _ g l i b _ m k e n u m s }
)
set ( GLIB_MKENUMS_CMD )
if ( WIN32 AND NOT MINGW )
# In Visual Studio builds, shebang lines are not supported
# in the standard cmd.exe shell that we use, so we need to
# first determine whether glib-mkenums is a Python or PERL
# script
execute_process ( COMMAND "${PYTHON_EXECUTABLE}" "${GLIB_MKENUMS}" --version
R E S U L T _ V A R I A B L E G L I B _ M K E N U M S _ P Y T H O N
O U T P U T _ Q U I E T E R R O R _ Q U I E T
)
if ( GLIB_MKENUMS_PYTHON EQUAL 0 )
message ( "${GLIB_MKENUMS} is a Python script." )
set ( GLIB_MKENUMS_CMD "${PYTHON_EXECUTABLE}" "${GLIB_MKENUMS}" )
else ( )
execute_process ( COMMAND "${PERL_EXECUTABLE}" "${GLIB_MKENUMS}" --version
R E S U L T _ V A R I A B L E G L I B _ M K E N U M S _ P E R L
O U T P U T _ Q U I E T E R R O R _ Q U I E T
)
if ( GLIB_MKENUMS_PERL EQUAL 0 )
message ( "${GLIB_MKENUMS} is a PERL script." )
set ( GLIB_MKENUMS_CMD "${PERL_EXECUTABLE}" "${GLIB_MKENUMS}" )
endif ( )
if ( NOT GLIB_MKENUMS_PERL EQUAL 0 AND NOT GLIB_MKENUMS_PYTHON EQUAL 0 )
message ( FATAL_ERROR "Unable to determine type of glib-mkenums script" )
endif ( )
endif ( )
else ( )
set ( GLIB_MKENUMS_CMD "${GLIB_MKENUMS}" )
endif ( )
if ( NOT GLIB_MKENUMS_CMD )
message ( FATAL_ERROR "HB_HAVE_GOBJECT was set, but we failed to find glib-mkenums, which is required" )
endif ( )
pkg_check_modules ( PC_GOBJECT QUIET gobject-2.0 )
find_library ( GOBJECT_LIBRARIES NAMES gobject-2.0 HINTS ${ PC_GLIB_LIBDIR } ${ PC_GLIB_LIBRARY_DIRS } )
find_path ( GOBJECT_INCLUDE_DIR NAMES glib-object.h HINTS ${ PC_GLIB_INCLUDEDIR } ${ PC_GLIB_INCLUDE_DIRS } PATH_SUFFIXES glib-2.0 )
include_directories ( ${ GOBJECTCONFIG_INCLUDE_DIR } ${ GOBJECT_INCLUDE_DIR } )
mark_as_advanced ( GOBJECT_LIBRARIES GOBJECT_INCLUDE_DIR )
list ( APPEND hb_gobject_sources ${ PROJECT_SOURCE_DIR } /src/hb-gobject-structs.cc )
list ( APPEND hb_gobject_gen_sources
$ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / s r c / h b - g o b j e c t - e n u m s . c c
)
list ( APPEND hb_gobject_structs_headers
$ { P R O J E C T _ S O U R C E _ D I R } / s r c / h b - g o b j e c t - s t r u c t s . h
)
list ( APPEND hb_gobject_headers
$ { P R O J E C T _ S O U R C E _ D I R } / s r c / h b - g o b j e c t . h
$ { h b _ g o b j e c t _ s t r u c t s _ h e a d e r s }
)
list ( APPEND hb_gobject_gen_headers
$ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / s r c / h b - g o b j e c t - e n u m s . h
)
add_custom_command (
O U T P U T $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / s r c / h b - g o b j e c t - e n u m s . h
C O M M A N D $ { G L I B _ M K E N U M S _ C M D }
- - t e m p l a t e = $ { P R O J E C T _ S O U R C E _ D I R } / s r c / h b - g o b j e c t - e n u m s . h . t m p l
- - i d e n t i f i e r - p r e f i x h b _
- - s y m b o l - p r e f i x h b _ g o b j e c t
$ { h b _ g o b j e c t _ s t r u c t s _ h e a d e r s }
$ { p r o j e c t _ h e a d e r s }
> $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / s r c / h b - g o b j e c t - e n u m s . h . t m p
C O M M A N D " $ { C M A K E _ C O M M A N D } "
" - D E N U M _ I N P U T _ S R C = $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / s r c / h b - g o b j e c t - e n u m s . h . t m p "
" - D E N U M _ O U T P U T _ S R C = $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / s r c / h b - g o b j e c t - e n u m s . h "
- P $ { P R O J E C T _ S O U R C E _ D I R } / r e p l a c e - e n u m - s t r i n g s . c m a k e
D E P E N D S $ { P R O J E C T _ S O U R C E _ D I R } / s r c / h b - g o b j e c t - e n u m s . h . t m p l
$ { h b _ g o b j e c t _ h e a d e r }
$ { p r o j e c t _ h e a d e r s }
)
add_custom_command (
O U T P U T $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / s r c / h b - g o b j e c t - e n u m s . c c
C O M M A N D $ { G L I B _ M K E N U M S _ C M D }
- - t e m p l a t e = $ { P R O J E C T _ S O U R C E _ D I R } / s r c / h b - g o b j e c t - e n u m s . c c . t m p l
- - i d e n t i f i e r - p r e f i x h b _
- - s y m b o l - p r e f i x h b _ g o b j e c t
$ { h b _ g o b j e c t _ h e a d e r }
$ { p r o j e c t _ h e a d e r s }
> $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / s r c / h b - g o b j e c t - e n u m s . c c . t m p
C O M M A N D " $ { C M A K E _ C O M M A N D } "
" - D E N U M _ I N P U T _ S R C = $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / s r c / h b - g o b j e c t - e n u m s . c c . t m p "
" - D E N U M _ O U T P U T _ S R C = $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / s r c / h b - g o b j e c t - e n u m s . c c "
- P $ { P R O J E C T _ S O U R C E _ D I R } / r e p l a c e - e n u m - s t r i n g s . c m a k e
D E P E N D S $ { P R O J E C T _ S O U R C E _ D I R } / s r c / h b - g o b j e c t - e n u m s . c c . t m p l
$ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / s r c / h b - g o b j e c t - e n u m s . h
$ { h b _ g o b j e c t _ h e a d e r }
$ { p r o j e c t _ h e a d e r s }
)
endif ( )
## Define harfbuzz library
add_library ( harfbuzz ${ project_sources } ${ project_extra_sources } ${ project_headers } )
target_link_libraries ( harfbuzz ${ THIRD_PARTY_LIBS } )
2021-02-06 13:24:25 +01:00
target_include_directories ( harfbuzz PUBLIC
" $ < B U I L D _ I N T E R F A C E : $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / s r c > "
" $ < I N S T A L L _ I N T E R F A C E : $ { C M A K E _ I N S T A L L _ I N C L U D E D I R } / h a r f b u z z > " )
2022-01-11 13:14:44 +01:00
if ( HB_HAVE_FREETYPE AND TARGET freetype )
2022-07-07 14:42:51 +02:00
target_link_libraries ( harfbuzz freetype )
2022-01-11 13:14:44 +01:00
endif ( )
2020-08-11 22:21:07 +02:00
## Define harfbuzz-icu library
if ( HB_HAVE_ICU )
add_library ( harfbuzz-icu ${ PROJECT_SOURCE_DIR } /src/hb-icu.cc ${ PROJECT_SOURCE_DIR } /src/hb-icu.h )
add_dependencies ( harfbuzz-icu harfbuzz )
target_link_libraries ( harfbuzz-icu harfbuzz ${ THIRD_PARTY_LIBS } )
if ( BUILD_SHARED_LIBS )
set_target_properties ( harfbuzz harfbuzz-icu PROPERTIES VISIBILITY_INLINES_HIDDEN TRUE )
endif ( )
endif ( )
## Define harfbuzz-subset library
if ( HB_BUILD_SUBSET )
add_library ( harfbuzz-subset ${ subset_project_sources } ${ subset_project_headers } )
2021-10-11 15:01:21 +02:00
list ( APPEND project_headers ${ PROJECT_SOURCE_DIR } /src/hb-subset.h )
2020-08-11 22:21:07 +02:00
add_dependencies ( harfbuzz-subset harfbuzz )
target_link_libraries ( harfbuzz-subset harfbuzz ${ THIRD_PARTY_LIBS } )
if ( BUILD_SHARED_LIBS )
set_target_properties ( harfbuzz harfbuzz-subset PROPERTIES VISIBILITY_INLINES_HIDDEN TRUE )
endif ( )
endif ( )
if ( UNIX OR MINGW )
# Make symbols link locally
include ( CheckCXXCompilerFlag )
CHECK_CXX_COMPILER_FLAG ( -Bsymbolic-functions CXX_SUPPORTS_FLAG_BSYMB_FUNCS )
if ( CXX_SUPPORTS_FLAG_BSYMB_FUNCS )
link_libraries ( -Bsymbolic-functions )
endif ( )
2022-04-06 13:54:40 +02:00
# As of CMake 3.0.0, the compiler id for Apple-provided Clang is now "AppleClang";
# thus we use MATCHES instead of STREQUAL to include either regular Clang or AppleClang
if ( CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "GNU" )
2020-08-11 22:21:07 +02:00
# Make sure we don't link to libstdc++
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-rtti -fno-exceptions" )
set ( CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "m" ) # libm
set ( CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "" )
set_target_properties ( harfbuzz PROPERTIES LINKER_LANGUAGE C )
if ( HB_BUILD_SUBSET )
set_target_properties ( harfbuzz-subset PROPERTIES LINKER_LANGUAGE C )
endif ( )
# No threadsafe statics as we do it ourselves
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-threadsafe-statics" )
endif ( )
CHECK_CXX_COMPILER_FLAG ( "-std=c++11" COMPILER_SUPPORTS_CXX11 )
if ( COMPILER_SUPPORTS_CXX11 )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11" )
else ( )
message ( STATUS "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler." )
endif ( )
endif ( )
## Define harfbuzz-gobject library
if ( HB_HAVE_GOBJECT )
add_library ( harfbuzz-gobject
$ { h b _ g o b j e c t _ s o u r c e s }
$ { h b _ g o b j e c t _ g e n _ s o u r c e s }
$ { h b _ g o b j e c t _ h e a d e r s }
$ { h b _ g o b j e c t _ g e n _ h e a d e r s }
)
include_directories ( BEFORE ${ CMAKE_CURRENT_BINARY_DIR } /src )
add_dependencies ( harfbuzz-gobject harfbuzz )
target_link_libraries ( harfbuzz-gobject harfbuzz ${ GOBJECT_LIBRARIES } ${ THIRD_PARTY_LIBS } )
if ( BUILD_SHARED_LIBS )
set_target_properties ( harfbuzz-gobject PROPERTIES VISIBILITY_INLINES_HIDDEN TRUE )
endif ( )
endif ( )
if ( BUILD_SHARED_LIBS AND WIN32 AND NOT MINGW )
add_definitions ( "-DHB_DLL_EXPORT" )
endif ( )
# On Windows, g-ir-scanner requires a DLL build in order for it to work
if ( WIN32 )
if ( NOT BUILD_SHARED_LIBS )
message ( "Building introspection files on Windows requires BUILD_SHARED_LIBS to be enabled." )
set ( HB_HAVE_INTROSPECTION OFF )
endif ( )
endif ( )
if ( HB_HAVE_INTROSPECTION )
find_package ( PkgConfig )
pkg_check_modules ( PC_GI QUIET gobject-introspection-1.0 )
find_program ( G_IR_SCANNER g-ir-scanner
H I N T S $ { P C _ g _ i r _ s c a n n e r }
)
find_program ( G_IR_COMPILER g-ir-compiler
H I N T S $ { P C _ g _ i r _ c o m p i l e r }
)
if ( WIN32 AND NOT MINGW )
# Note that since we already enable HB_HAVE_GOBJECT
# we would already have PYTHON_EXECUTABLE handy
set ( G_IR_SCANNER_CMD "${PYTHON_EXECUTABLE}" "${G_IR_SCANNER}" )
else ( )
set ( G_IR_SCANNER_CMD "${G_IR_SCANNER}" )
endif ( )
# We need to account for the varying output directories
# when we build using Visual Studio projects
if ( "${CMAKE_GENERATOR}" MATCHES "Visual Studio*" )
set ( hb_libpath "${CMAKE_CURRENT_BINARY_DIR}/$<CONFIGURATION>" )
else ( )
set ( hb_libpath "$<TARGET_FILE_DIR:harfbuzz-gobject>" )
endif ( )
# Get the CFlags that we used to build HarfBuzz/HarfBuzz-GObject
set ( hb_defines_cflags "" )
foreach ( hb_cflag ${ hb_cflags } )
list ( APPEND hb_defines_cflags "-D${hb_cflag}" )
endforeach ( hb_cflag )
# Get the other dependent libraries we used to build HarfBuzz/HarfBuzz-GObject
set ( extra_libs "" )
foreach ( extra_lib ${ THIRD_PARTY_LIBS } )
# We don't want the .lib extension here...
string ( REPLACE ".lib" "" extra_lib_stripped "${extra_lib}" )
list ( APPEND extra_libs "--extra-library=${extra_lib_stripped}" )
endforeach ( )
set ( introspected_sources )
foreach ( f
$ { p r o j e c t _ h e a d e r s }
$ { p r o j e c t _ s o u r c e s }
$ { h b _ g o b j e c t _ g e n _ s o u r c e s }
$ { h b _ g o b j e c t _ g e n _ h e a d e r s }
$ { h b _ g o b j e c t _ s o u r c e s }
$ { h b _ g o b j e c t _ h e a d e r s }
)
if ( WIN32 )
# Nasty issue: We need to make drive letters lower case,
# otherwise g-ir-scanner won't like it and give us a bunch
# of invalid items and unresolved types...
STRING ( SUBSTRING "${f}" 0 1 drive )
STRING ( SUBSTRING "${f}" 1 -1 path )
if ( drive MATCHES "[A-Z]" )
STRING ( TOLOWER ${ drive } drive_lower )
list ( APPEND introspected_sources "${drive_lower}${path}" )
else ( )
list ( APPEND introspected_sources "${f}" )
endif ( )
else ( )
list ( APPEND introspected_sources "${f}" )
endif ( )
endforeach ( )
file ( REMOVE ${ CMAKE_CURRENT_BINARY_DIR } /src/hb_gir_list )
foreach ( s ${ introspected_sources } )
file ( APPEND ${ CMAKE_CURRENT_BINARY_DIR } /src/hb_gir_list "${s}\n" )
endforeach ( )
# Finally, build the introspection files...
add_custom_command (
T A R G E T h a r f b u z z - g o b j e c t
P O S T _ B U I L D
C O M M A N D $ { G _ I R _ S C A N N E R _ C M D }
- - w a r n - a l l - - n o - l i b t o o l - - v e r b o s e
- - n a m e s p a c e = H a r f B u z z
- - n s v e r s i o n = 0 . 0
- - s y m b o l - p r e f i x = h b
- - s y m b o l - p r e f i x = h b _ g o b j e c t
- - i d e n t i f i e r - p r e f i x = h b _
- - i n c l u d e G O b j e c t - 2 . 0
- - p k g - e x p o r t = h a r f b u z z - g o b j e c t
- - c - i n c l u d e = h b - g o b j e c t . h
- - c f l a g s - b e g i n
- I $ { P R O J E C T _ S O U R C E _ D I R } / s r c
- I $ { P R O J E C T _ B I N A R Y _ D I R } / s r c
$ { h b _ i n c l u d e d i r _ c f l a g s }
$ { h b _ d e f i n e s _ c f l a g s }
- D H B _ H
- D H B _ H _ I N
- D H B _ O T _ H
- D H B _ O T _ H _ I N
- D H B _ A A T _ H
- D H B _ A A T _ H _ I N
- D H B _ G O B J E C T _ H
- D H B _ G O B J E C T _ H _ I N
- D H B _ E X T E R N =
- - c f l a g s - e n d
- - l i b r a r y = h a r f b u z z - g o b j e c t
- - l i b r a r y = h a r f b u z z
- L $ { h b _ l i b p a t h }
$ { e x t r a _ l i b s }
- - f i l e l i s t $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / s r c / h b _ g i r _ l i s t
- o $ { h b _ l i b p a t h } / H a r f B u z z - 0 . 0 . g i r
D E P E N D S h a r f b u z z - g o b j e c t h a r f b u z z $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / s r c / h b _ g i r _ l i s t
)
add_custom_command (
T A R G E T h a r f b u z z - g o b j e c t
P O S T _ B U I L D
C O M M A N D " $ { G _ I R _ C O M P I L E R } "
- - v e r b o s e - - d e b u g
- - i n c l u d e d i r $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R }
$ { h b _ l i b p a t h } / H a r f B u z z - 0 . 0 . g i r
- o $ { h b _ l i b p a t h } / H a r f B u z z - 0 . 0 . t y p e l i b
D E P E N D S $ { h b _ l i b p a t h } / H a r f B u z z - 0 . 0 . g i r h a r f b u z z - g o b j e c t
)
endif ( )
## Additional framework build configs
if ( BUILD_FRAMEWORK )
set ( CMAKE_MACOSX_RPATH ON )
set_target_properties ( harfbuzz PROPERTIES
F R A M E W O R K T R U E
P U B L I C _ H E A D E R " $ { p r o j e c t _ h e a d e r s } "
X C O D E _ A T T R I B U T E _ I N S T A L L _ P A T H " @ r p a t h "
)
set ( MACOSX_FRAMEWORK_IDENTIFIER "harfbuzz" )
set ( MACOSX_FRAMEWORK_SHORT_VERSION_STRING "${HB_VERSION}" )
set ( MACOSX_FRAMEWORK_BUNDLE_VERSION "${HB_VERSION}" )
endif ( )
## Additional harfbuzz build artifacts
if ( HB_BUILD_UTILS )
# https://github.com/WebKit/webkit/blob/master/Source/cmake/FindCairo.cmake
find_package ( PkgConfig )
pkg_check_modules ( PC_CAIRO QUIET cairo )
find_path ( CAIRO_INCLUDE_DIRS NAMES cairo.h HINTS ${ PC_CAIRO_INCLUDEDIR } ${ PC_CAIRO_INCLUDE_DIRS } PATH_SUFFIXES cairo )
find_library ( CAIRO_LIBRARIESNAMES cairo HINTS ${ PC_CAIRO_LIBDIR } ${ PC_CAIRO_LIBRARY_DIRS } )
add_definitions ( "-DPACKAGE_NAME=\" HarfBuzz\ "" )
add_definitions ( "-DPACKAGE_VERSION=\" ${ HB_VERSION } \"")
include_directories ( ${ CAIRO_INCLUDE_DIRS } )
add_executable ( hb-view ${ HB_VIEW_sources } )
target_link_libraries ( hb-view harfbuzz ${ CAIRO_LIBRARIESNAMES } )
add_executable ( hb-shape ${ HB_SHAPE_sources } )
target_link_libraries ( hb-shape harfbuzz )
add_executable ( hb-subset ${ HB_SUBSET_CLI_sources } )
target_link_libraries ( hb-subset harfbuzz harfbuzz-subset )
add_executable ( hb-ot-shape-closure ${ HB_OT_SHAPE_CLOSURE_sources } )
target_link_libraries ( hb-ot-shape-closure harfbuzz )
mark_as_advanced ( CAIRO_INCLUDE_DIRS CAIRO_LIBRARIESNAMES )
endif ( )
## Install
include ( GNUInstallDirs )
if ( NOT SKIP_INSTALL_HEADERS AND NOT SKIP_INSTALL_ALL )
install ( FILES ${ project_headers } DESTINATION ${ CMAKE_INSTALL_INCLUDEDIR } /harfbuzz )
if ( HB_HAVE_GOBJECT )
install ( FILES ${ hb_gobject_headers } ${ hb_gobject_gen_headers } DESTINATION ${ CMAKE_INSTALL_INCLUDEDIR } /harfbuzz )
endif ( )
endif ( )
2022-09-06 12:02:04 +02:00
# get these variables in the required format
list ( REMOVE_DUPLICATES PC_REQUIRES_PRIV )
string ( REPLACE ";" ", " PC_REQUIRES_PRIV "${PC_REQUIRES_PRIV}" )
list ( REMOVE_DUPLICATES PC_LIBS_PRIV )
string ( REPLACE ";" " " PC_LIBS_PRIV "${PC_LIBS_PRIV}" )
# Macro to write pkg-config .pc configuration files
macro ( make_pkgconfig_pc_file name )
file ( READ "${PROJECT_SOURCE_DIR}/src/${name}.pc.in" FSTR )
string ( REPLACE "%prefix%" "${CMAKE_INSTALL_PREFIX}" FSTR ${ FSTR } )
string ( REPLACE "%exec_prefix%" "\${prefix}" FSTR ${ FSTR } )
if ( IS_ABSOLUTE "${CMAKE_INSTALL_INCLUDEDIR}" )
string ( REPLACE "%includedir%" "${CMAKE_INSTALL_INCLUDEDIR}" FSTR ${ FSTR } )
else ( )
string ( REPLACE "%includedir%" "\${prefix}/${CMAKE_INSTALL_INCLUDEDIR}" FSTR ${ FSTR } )
endif ( )
if ( IS_ABSOLUTE "${CMAKE_INSTALL_LIBDIR}" )
string ( REPLACE "%libdir%" "${CMAKE_INSTALL_LIBDIR}" FSTR ${ FSTR } )
else ( )
string ( REPLACE "%libdir%" "\${prefix}/${CMAKE_INSTALL_LIBDIR}" FSTR ${ FSTR } )
endif ( )
string ( REPLACE "%VERSION%" "${HB_VERSION}" FSTR ${ FSTR } )
string ( REPLACE "%requires_private%" "${PC_REQUIRES_PRIV}" FSTR ${ FSTR } )
string ( REPLACE "%libs_private%" "${PC_LIBS_PRIV}" FSTR ${ FSTR } )
file ( WRITE "${PROJECT_BINARY_DIR}/${name}.pc" ${ FSTR } )
install (
F I L E S " $ { P R O J E C T _ B I N A R Y _ D I R } / $ { n a m e } . p c "
D E S T I N A T I O N " $ { C M A K E _ I N S T A L L _ L I B D I R } / p k g c o n f i g "
C O M P O N E N T p k g c o n f i g
)
endmacro ( make_pkgconfig_pc_file )
2020-08-11 22:21:07 +02:00
if ( NOT SKIP_INSTALL_LIBRARIES AND NOT SKIP_INSTALL_ALL )
install ( TARGETS harfbuzz
E X P O R T h a r f b u z z C o n f i g
A R C H I V E D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ L I B D I R }
L I B R A R Y D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ L I B D I R }
R U N T I M E D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ B I N D I R }
F R A M E W O R K D E S T I N A T I O N L i b r a r y / F r a m e w o r k s
)
2022-09-06 12:02:04 +02:00
make_pkgconfig_pc_file ( "harfbuzz" )
2020-08-11 22:21:07 +02:00
install ( EXPORT harfbuzzConfig
N A M E S P A C E h a r f b u z z : :
D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ L I B D I R } / c m a k e / h a r f b u z z
)
if ( HB_HAVE_ICU )
install ( TARGETS harfbuzz-icu
A R C H I V E D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ L I B D I R }
L I B R A R Y D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ L I B D I R }
R U N T I M E D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ B I N D I R }
F R A M E W O R K D E S T I N A T I O N L i b r a r y / F r a m e w o r k s
)
2022-09-06 12:02:04 +02:00
make_pkgconfig_pc_file ( "harfbuzz-icu" )
2020-08-11 22:21:07 +02:00
endif ( )
2021-10-11 15:01:21 +02:00
if ( HB_BUILD_SUBSET )
2021-10-11 15:04:47 +02:00
install ( TARGETS harfbuzz-subset
A R C H I V E D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ L I B D I R }
2022-09-06 12:02:04 +02:00
)
make_pkgconfig_pc_file ( "harfbuzz-subset" )
2021-10-11 15:01:21 +02:00
endif ( )
2020-08-11 22:21:07 +02:00
if ( HB_BUILD_UTILS )
if ( WIN32 AND BUILD_SHARED_LIBS )
install ( TARGETS harfbuzz-subset
R U N T I M E D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ B I N D I R }
)
endif ( )
install ( TARGETS hb-view
R U N T I M E D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ B I N D I R }
)
install ( TARGETS hb-subset
R U N T I M E D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ B I N D I R }
)
install ( TARGETS hb-shape
R U N T I M E D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ B I N D I R }
)
install ( TARGETS hb-ot-shape-closure
R U N T I M E D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ B I N D I R }
)
endif ( )
if ( HB_HAVE_GOBJECT )
install ( TARGETS harfbuzz-gobject
A R C H I V E D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ L I B D I R }
L I B R A R Y D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ L I B D I R }
R U N T I M E D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ B I N D I R }
)
2022-09-06 12:02:04 +02:00
make_pkgconfig_pc_file ( "harfbuzz-gobject" )
2020-08-11 22:21:07 +02:00
if ( HB_HAVE_INTROSPECTION )
if ( "${CMAKE_GENERATOR}" MATCHES "Visual Studio*" )
set ( hb_libpath "${CMAKE_CURRENT_BINARY_DIR}/$<CONFIGURATION>" )
else ( )
set ( hb_libpath "$<TARGET_FILE_DIR:harfbuzz-gobject>" )
endif ( )
install ( FILES "${hb_libpath}/HarfBuzz-0.0.gir"
D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ D A T A R O O T D I R } / g i r - 1 . 0
)
install ( FILES "${hb_libpath}/HarfBuzz-0.0.typelib"
D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ L I B D I R } / g i r e p o s i t o r y - 1 . 0
)
endif ( )
endif ( )
endif ( )