From 592d0f75f7e71e4075fab0ba7d89931964b5b4a8 Mon Sep 17 00:00:00 2001 From: Henrique Teles <66783472+Teles1@users.noreply.github.com> Date: Sat, 3 Aug 2024 14:48:39 -0400 Subject: [PATCH] Update vcpkg.json Adding glew to dependencies `Could NOT find GLEW (missing: GLEW_INCLUDE_DIRS GLEW_LIBRARIES)` --- vcpkg.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vcpkg.json b/vcpkg.json index 268cfeb..1d3cfd4 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -1,6 +1,7 @@ { "dependencies": [ "glm", - "sdl2" + "sdl2", + "glew" ] }