blob: 9fd3923bfd9b2448a4edd171a7cf299b43d24127 (
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)
|