blob: ea349237d3e5519c9b637648ed599c7088f917a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# -*- cmake -*-
include(Prebuilt)
include(GLH)
add_library( ll::glext INTERFACE IMPORTED )
if (USESYSTEMLIBS)
return ()
endif ()
use_system_binary(glext)
use_prebuilt_binary(glext)
|