From 3af0aee75035b84840820999cccae300873dec3f Mon Sep 17 00:00:00 2001 From: scawful Date: Thu, 24 Aug 2023 22:06:17 -0400 Subject: [PATCH] Remove GLEW, not needed --- CMakeLists.txt | 1 - src/app/CMakeLists.txt | 3 --- 2 files changed, 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6345584b..ed70ac5c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,6 @@ include_directories(${PROTOBUF_INCLUDE_PATH}) # Video Libraries ------------------------------------------------------------- find_package(PNG REQUIRED) find_package(OpenGL REQUIRED) -find_package(GLEW REQUIRED) # SDL2 ------------------------------------------------------------------------ if (UNIX) diff --git a/src/app/CMakeLists.txt b/src/app/CMakeLists.txt index f7b78193..25a65d6c 100644 --- a/src/app/CMakeLists.txt +++ b/src/app/CMakeLists.txt @@ -24,7 +24,6 @@ target_include_directories( ${CMAKE_SOURCE_DIR}/src/ ${PNG_INCLUDE_DIRS} ${SDL2_INCLUDE_DIR} - ${GLEW_INCLUDE_DIRS} lib/SDL_mixer/include/ # lib/asar/src/asar/ # lib/snes_spc/snes_spc/ @@ -35,8 +34,6 @@ target_link_libraries( ${ABSL_TARGETS} ${SDL_TARGETS} ${PNG_LIBRARIES} - ${GLEW_LIBRARIES} - ${OPENGL_LIBRARIES} ${CMAKE_DL_LIBS} SDL2_mixer ImGui