mirror of https://github.com/axmolengine/axmol.git
18 lines
353 B
CMake
18 lines
353 B
CMake
|
# FindFontconfig
|
||
|
# --------------
|
||
|
#
|
||
|
# Locate Fontconfig library
|
||
|
#
|
||
|
|
||
|
if(NOT FONTCONFIG_FOUND)
|
||
|
find_package(PkgConfig)
|
||
|
pkg_search_module(FONTCONFIG fontconfig)
|
||
|
endif()
|
||
|
|
||
|
include(FindPackageHandleStandardArgs)
|
||
|
find_package_handle_standard_args(Fontconfig
|
||
|
REQUIRED_VARS FONTCONFIG_LIBRARIES FONTCONFIG_INCLUDE_DIRS
|
||
|
VERSION_VAR FONTCONFIG_VERSION
|
||
|
)
|
||
|
|