mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-12 18:29:02 +00:00
Fixed: Compilation with WITH_STATIC_EXTERNAL under Mac OS X
This commit is contained in:
parent
4be475c983
commit
bd69216544
1 changed files with 7 additions and 0 deletions
|
@ -57,6 +57,13 @@ FIND_LIBRARY(FREETYPE_LIBRARY
|
||||||
|
|
||||||
IF(FREETYPE_LIBRARY AND FREETYPE_INCLUDE_DIRS)
|
IF(FREETYPE_LIBRARY AND FREETYPE_INCLUDE_DIRS)
|
||||||
SET(FREETYPE_FOUND "YES")
|
SET(FREETYPE_FOUND "YES")
|
||||||
|
IF(WITH_STATIC_EXTERNAL AND APPLE)
|
||||||
|
FIND_PACKAGE(BZip2)
|
||||||
|
IF(BZIP2_FOUND)
|
||||||
|
SET(FREETYPE_INCLUDE_DIRS ${FREETYPE_INCLUDE_DIRS} ${BZIP2_INCLUDE_DIR})
|
||||||
|
SET(FREETYPE_LIBRARY ${FREETYPE_LIBRARY} ${BZIP2_LIBRARIES})
|
||||||
|
ENDIF(BZIP2_FOUND)
|
||||||
|
ENDIF(WITH_STATIC_EXTERNAL AND APPLE)
|
||||||
IF(NOT FREETYPE_FIND_QUIETLY)
|
IF(NOT FREETYPE_FIND_QUIETLY)
|
||||||
MESSAGE(STATUS "Found FreeType: ${FREETYPE_LIBRARY}")
|
MESSAGE(STATUS "Found FreeType: ${FREETYPE_LIBRARY}")
|
||||||
ENDIF(NOT FREETYPE_FIND_QUIETLY)
|
ENDIF(NOT FREETYPE_FIND_QUIETLY)
|
||||||
|
|
Loading…
Reference in a new issue