blob: 77140af6413c2a7150e448216bc8a9e4087f74c7 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | # -*- cmake -*-
include(Prebuilt)
include_guard()
add_library( ll::freetype INTERFACE IMPORTED )
use_system_binary(freetype)
use_prebuilt_binary(freetype)
target_include_directories( ll::freetype SYSTEM INTERFACE  ${LIBS_PREBUILT_DIR}/include/freetype2/)
target_link_libraries( ll::freetype INTERFACE freetype )
 |