Sha256: 4a807d9e3be990da12cb24c73b392761a926735655839d9ada20c9af4620964c
Contents?: true
Size: 327 Bytes
Versions: 3
Compression:
Stored size: 327 Bytes
Contents
set -x set -e if [ ! -e glfw-3.1.2/include/GLFW/glfw3.h ]; then wget https://github.com/glfw/glfw/releases/download/3.1.2/glfw-3.1.2.zip unzip glfw-3.1.2.zip; fi cd glfw-3.1.2 if [ ! -e src/libglfw3.so ]; then cmake -D BUILD_SHARED_LIBS=ON . make; fi if [ ! -e /usr/local/lib/libglfw.so ]; then sudo make install; fi
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
mittsu-0.1.3 | install-glfw-3.1.2.sh |
mittsu-0.1.2 | install-glfw-3.1.2.sh |
mittsu-0.1.1 | install-glfw-3.1.2.sh |