11 lines
310 B
CMake
11 lines
310 B
CMake
# -*- cmake -*-
|
|
include(Prebuilt)
|
|
|
|
if (NOT (STANDALONE OR DARWIN))
|
|
use_prebuilt_binary(glext)
|
|
# possible glh_linear should have its own .cmake file instead
|
|
#use_prebuilt_binary(glh_linear)
|
|
# actually... not any longer, it's now in git -SG
|
|
set(GLEXT_INCLUDE_DIR ${LIBS_PREBUILT_DIR}/include)
|
|
endif ()
|