diff options
| author | Brad Kittenbrink <brad@lindenlab.com> | 2022-06-23 17:33:03 -0700 | 
|---|---|---|
| committer | Brad Kittenbrink <brad@lindenlab.com> | 2022-06-23 22:53:36 -0700 | 
| commit | 6b857059516be849e60570445a03f58647656c53 (patch) | |
| tree | 9942306222f1235f56de81f1af45d0ac3375afda /indra/cmake | |
| parent | 088ddc28a4954f8e10627deec951a51fda8cb31d (diff) | |
fixing DRTVWR-559 glext usage on mac by upgrading to use khronos distributed glext.h
Diffstat (limited to 'indra/cmake')
| -rw-r--r-- | indra/cmake/GLEXT.cmake | 4 | ||||
| -rw-r--r-- | indra/cmake/LLRender.cmake | 2 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/indra/cmake/GLEXT.cmake b/indra/cmake/GLEXT.cmake index 9fd3923bfd..a749644202 100644 --- a/indra/cmake/GLEXT.cmake +++ b/indra/cmake/GLEXT.cmake @@ -2,9 +2,7 @@  include(Prebuilt)  if (NOT USESYSTEMLIBS) -  if (WINDOWS OR LINUX) -    use_prebuilt_binary(glext) -  endif (WINDOWS OR LINUX) +  use_prebuilt_binary(glext)    use_prebuilt_binary(glh_linear)    set(GLEXT_INCLUDE_DIR ${LIBS_PREBUILT_DIR}/include)  endif (NOT USESYSTEMLIBS) diff --git a/indra/cmake/LLRender.cmake b/indra/cmake/LLRender.cmake index 868922451f..2d9d3725ad 100644 --- a/indra/cmake/LLRender.cmake +++ b/indra/cmake/LLRender.cmake @@ -3,10 +3,12 @@  include(Variables)  include(FreeType)  include(GLH) +include(GLEXT)  set(LLRENDER_INCLUDE_DIRS      ${LIBS_OPEN_DIR}/llrender      ${GLH_INCLUDE_DIR} +    ${GLEXT_INCLUDE_DIR}      )  if (BUILD_HEADLESS) | 
