diff options
| author | Marius Kintel <marius@kintel.net> | 2013-05-24 04:14:34 (GMT) | 
|---|---|---|
| committer | Marius Kintel <marius@kintel.net> | 2013-05-24 04:14:34 (GMT) | 
| commit | 95e399e06c6522f3fa67679808a1d52815368efa (patch) | |
| tree | 32f290a3af66b4bffa91f69caac4a0678f45573a /tests | |
| parent | 71ab237aada8db602045063f0f1c6082ef06972a (diff) | |
| parent | 85a6cf92feebd75f817e68bbfd53807d3d2fd1fd (diff) | |
Merge pull request #370 from openscad/gcc110fix
Gcc110fix
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/CMakeLists.txt | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 9821d70..39dc341 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -252,6 +252,18 @@ endif()  # OpenGL  find_package(OpenGL REQUIRED) +if (NOT OPENGL_GLU_FOUND) +  message(STATUS "GLU not found in system paths...searching $ENV{OPENSCAD_LIBRARIES} ") +  find_library(OPENGL_glu_LIBRARY GLU HINTS $ENV{OPENSCAD_LIBRARIES}/lib) +  if (NOT OPENGL_glu_LIBRARY) +    message(FATAL "GLU library not found") +  endif() +  set(OPENGL_LIBRARIES ${OPENGL_glu_LIBRARY} ${OPENGL_LIBRARIES}) +  message(STATUS "OpenGL LIBRARIES: ") +  foreach(GLLIB ${OPENGL_LIBRARIES}) +    message(STATUS "  " ${GLLIB}) +  endforeach() +endif()  # OpenCSG  if (NOT $ENV{OPENCSGDIR} STREQUAL "") | 
