blob: d0e17050bdf6ef9f8d0e6fc7d19165adccb80cd1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*- cmake -*-
include(Prebuilt)
include_guard()
create_target( ll::freetype)
use_prebuilt_binary(freetype)
set_target_include_dirs( ll::freetype ${LIBS_PREBUILT_DIR}/include/freetype2/)
target_link_libraries( ll::freetype INTERFACE freetype )
|