Skip to content

Commit

Permalink
patch: check for glfw .so instead of .a
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Smith committed Feb 21, 2016
1 parent 12cbbcc commit d9c805d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install-glfw-3.1.2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if [ ! -e glfw-3.1.2/include/GLFW/glfw3.h ]; then
unzip glfw-3.1.2.zip;
fi
cd glfw-3.1.2
if [ ! -e src/libglfw3.a ]; then
if [ ! -e src/libglfw3.so ]; then
cmake -D BUILD_SHARED_LIBS=ON .
make;
fi
Expand Down

0 comments on commit d9c805d

Please sign in to comment.