blob: 2a08c8fbaeb5890f50ca288d29ee6bd68852ab72 (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | # -*- cmake -*-
include(Prebuilt)
if (NOT USESYSTEMLIBS)
  if (WINDOWS OR LINUX)
    use_prebuilt_binary(glext)
  endif (WINDOWS OR LINUX)
  use_prebuilt_binary(glh-linear)
  set(GLEXT_INCLUDE_DIR ${LIBS_PREBUILT_DIR}/include)
endif (NOT USESYSTEMLIBS)
 |