From 797d30d7bb5e7601d1b2a7a0264dd33cd7d30cd1 Mon Sep 17 00:00:00 2001 From: Kenneth Moreland Date: Sat, 22 Oct 2016 16:03:16 -0600 Subject: [PATCH] Remove unnecessary link from vtkm_rendering to glfw There is no code in the rendering library that uses GLFW. (GLFW is currently only used directly by tests and examples.) This adds unnecessary link dependencies that can only hurt us later. --- vtkm/rendering/CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/vtkm/rendering/CMakeLists.txt b/vtkm/rendering/CMakeLists.txt index 6fcde8288..bf5146bd8 100644 --- a/vtkm/rendering/CMakeLists.txt +++ b/vtkm/rendering/CMakeLists.txt @@ -130,11 +130,6 @@ if(VTKm_OpenGL_FOUND) list(APPEND headers ${egl_headers}) list(APPEND sources ${egl_sources}) endif() - - vtkm_configure_component_GLFW() - if(VTKm_GLFW_FOUND) - list(APPEND headers ${glfw_headers}) - endif() endif() if(VTKm_ENABLE_OSMESA AND NOT VTKm_OSMesa_FOUND)