From e8df1282d2f9433cd720948da48ff11c180a3cb8 Mon Sep 17 00:00:00 2001 From: Epicalert Date: Thu, 7 Jan 2021 13:04:16 +0800 Subject: [PATCH] Remove find_package( GLEW ) from CMakeLists It was already included by another package and causes problems when compiling on MacOS. --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 794b2f1..6a0e46e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,6 @@ project( FaceCam2D VERSION 0.1.0 ) find_package( OpenCV REQUIRED ) find_package( VTK REQUIRED ) find_package( HDF5 REQUIRED ) -find_package( GLEW REQUIRED ) find_package( OpenGL REQUIRED ) find_package( glm REQUIRED ) find_package( FreeGLUT REQUIRED )