mirror of https://github.com/axmolengine/axmol.git
18 lines
325 B
CMake
18 lines
325 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_FOUND
|
||
|
VERSION_VAR FONTCONFIG_VERSION
|
||
|
)
|
||
|
|