Remove GLEW as a dependency

(cherry picked from commit 1b404d8b9ff95baaa0d7ee11089e79d6d5e65ff9)
This commit is contained in:
Dan Paulat 2025-07-13 14:31:25 -05:00
parent 13a891b477
commit 9076772cf6
2 changed files with 2 additions and 3 deletions

View file

@ -11,7 +11,6 @@ class SupercellWxConan(ConanFile):
"freetype/2.13.2", "freetype/2.13.2",
"geographiclib/2.4", "geographiclib/2.4",
"geos/3.13.0", "geos/3.13.0",
"glew/2.2.0",
"glm/1.0.1", "glm/1.0.1",
"gtest/1.16.0", "gtest/1.16.0",
"libcurl/8.12.1", "libcurl/8.12.1",

View file

@ -17,8 +17,8 @@ find_package(Boost)
find_package(Fontconfig) find_package(Fontconfig)
find_package(geographiclib) find_package(geographiclib)
find_package(geos) find_package(geos)
find_package(GLEW)
find_package(glm) find_package(glm)
find_package(OpenGL)
find_package(Python COMPONENTS Interpreter) find_package(Python COMPONENTS Interpreter)
find_package(SQLite3) find_package(SQLite3)
@ -746,9 +746,9 @@ target_link_libraries(scwx-qt PUBLIC Qt${QT_VERSION_MAJOR}::Widgets
GEOS::geos GEOS::geos
GEOS::geos_cxx_flags GEOS::geos_cxx_flags
glad_gl_core_33 glad_gl_core_33
GLEW::GLEW
glm::glm glm::glm
imgui imgui
OpenGL::GLU
qt6ct-common qt6ct-common
qt6ct-widgets qt6ct-widgets
SQLite::SQLite3 SQLite::SQLite3