blob: baa61d73c8f43c6c01e1a3dbbb46851ebf761b97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -*- cmake -*-
include(Prebuilt)
if (STANDALONE)
include(FindPkgConfig)
pkg_check_modules(FREETYPE REQUIRED freetype2)
else (STANDALONE)
use_prebuilt_binary(freetype)
set(FREETYPE_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include)
set(FREETYPE_LIBRARIES freetype)
endif (STANDALONE)
link_directories(${FREETYPE_LIBRARY_DIRS})
|