|
@@ -0,0 +1,19 @@
|
|
|
+@echo off
|
|
|
+
|
|
|
+curl -fsSL -o glfw-3.3.2.bin.WIN64.zip https://github.com/glfw/glfw/releases/download/3.3.2/glfw-3.3.2.bin.WIN64.zip
|
|
|
+tar -xf glfw-3.3.2.bin.WIN64.zip
|
|
|
+mkdir Dependencies\GLFW\lib\
|
|
|
+move glfw-3.3.2.bin.WIN64\lib-vc2019\glfw3.lib Dependencies\GLFW\lib\glfw3.lib
|
|
|
+mkdir Dependencies\GLFW\include\GLFW
|
|
|
+move glfw-3.3.2.bin.WIN64\include\GLFW\glfw3.h Dependencies\GLFW\include\GLFW\glfw3.h
|
|
|
+del glfw-3.3.2.bin.WIN64.zip
|
|
|
+rmdir /s /q glfw-3.3.2.bin.WIN64
|
|
|
+
|
|
|
+curl -fsSL -o glew-2.1.0-win32.zip https://sourceforge.net/projects/glew/files/glew/2.1.0/glew-2.1.0-win32.zip/download
|
|
|
+tar -xf glew-2.1.0-win32.zip
|
|
|
+mkdir Dependencies\GLEW\lib\
|
|
|
+move glew-2.1.0\lib\Release\x64\glew32s.lib Dependencies\GLEW\lib\glew32s.lib
|
|
|
+mkdir Dependencies\GLEW\include\GL\
|
|
|
+move glew-2.1.0\include\GL\glew.h Dependencies\GLEW\include\GL\glew.h
|
|
|
+del glew-2.1.0-win32.zip
|
|
|
+rmdir /s /q glew-2.1.0
|