Skip to content
Snippets Groups Projects
Commit fe649893 authored by Sankhesh Jhaveri's avatar Sankhesh Jhaveri :speech_balloon:
Browse files

COMP: Ensure that gl2ps is not built with GLES builds

parent 55aed9aa
Branches
No related tags found
No related merge requests found
if(ANDROID OR APPLE_IOS) # No gl2ps on mobile
if(ANDROID OR APPLE_IOS OR VTK_OPENGL_USE_GLES) # No gl2ps on mobile
set(gl2ps_depends)
set(gl2ps_test_depends)
elseif(VTK_RENDERING_BACKEND STREQUAL "OpenGL2")
......
if(ANDROID OR APPLE_IOS) # No GL2PS on mobile
if(ANDROID OR APPLE_IOS OR VTK_OPENGL_USE_GLES) # No GL2PS on mobile
return()
endif()
vtk_module(vtkIOExportOpenGL2
......
if(ANDROID OR APPLE_IOS) # No GL2PS on mobile
if(ANDROID OR APPLE_IOS OR VTK_OPENGL_USE_GLES) # No GL2PS on mobile
return()
endif()
vtk_module(vtkRenderingGL2PSOpenGL2
......
if(ANDROID OR APPLE_IOS) # No GL2PS on mobile
if(ANDROID OR APPLE_IOS OR VTK_OPENGL_USE_GLES) # No GL2PS on mobile
return()
endif()
vtk_module(vtkgl2ps
......@@ -6,4 +6,4 @@ vtk_module(vtkgl2ps
DEPENDS
vtkpng
vtkzlib
)
\ No newline at end of file
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment