It seems that the compilation script expect the lib to be installed at a hardcoded location "/usr/lib/"
If you are sure your hardware drivers are properly installed you can create a symbolic link at the expected location. in a terminal:
sudo su # enter you admin password
cd /usr/lib #
find / -name libGL.so # find the location of the lib(s)
ln -s <full_path_of_the_lib> # create a symbolic link to the lib
BE CAREFUL ! Create the link only if you don't already have a "/usr/lib/libGL.so" in the results of the "find command"
You may have several versions of the libGL.so lib so be sure to pick the right one.
After that you should be able to compile/run the game.
Regards
Last edit: bfighter 2014-05-15
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Here is a workaround
It seems that the compilation script expect the lib to be installed at a hardcoded location "/usr/lib/"
If you are sure your hardware drivers are properly installed you can create a symbolic link at the expected location. in a terminal:
sudo su # enter you admin password
cd /usr/lib #
find / -name libGL.so # find the location of the lib(s)
ln -s <full_path_of_the_lib> # create a symbolic link to the lib
BE CAREFUL ! Create the link only if you don't already have a "/usr/lib/libGL.so" in the results of the "find command"
You may have several versions of the libGL.so lib so be sure to pick the right one.
After that you should be able to compile/run the game.
Regards
Last edit: bfighter 2014-05-15
Housekeeping. Out of date, new cmake system is in place.