mkdir sfml2build
cd sfml2build
wget https://github.com/SFML/SFML/tarball/master
tar zxf master
rm master
mv #your folder name# sfml2srcsfml2src being the new folder name
sudo apt-get install libpthread-stubs0-devsave it is getReq inside of sfml2build folder
sudo apt-get install libgl1-mesa-dev
sudo apt-get install libx11-dev
sudo apt-get install libxrandr-dev
sudo apt-get install libfreetype6-dev
sudo apt-get install libglew1.5-dev
sudo apt-get install libjpeg8-dev
sudo apt-get install libsndfile1-dev
sudo apt-get install libopenal-dev
sudo apt-get install cmake
sudo apt-get install g++
Do you want to continue [Y/n]?
cd sfml2src
echo Starting SFML 2.0 install
echo see install.log for install output..
echo No.. Really.. Read it, this is my first
echo batch script for linux, so expect bugs
echo especially because I can\'t be stuffed
echo using regex to look for error output
echo building make for dynamic release
cmake -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=TRUE > install.log
echo Complete
echo making
make >> install.log
echo Complete
echo Installing
sudo make install >> install.log
echo Complete
echo building make for dynamic debug
cmake -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=TRUE >> install.log
echo Complete
echo making
make >> install.log
echo Complete
echo Installing
sudo make install >> install.log
echo Complete
echo building make for static release
cmake -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=FALSE >> install.log
echo Complete
echo making
make >> install.log
echo Complete
echo Installing
sudo make install >> install.log
echo Complete
echo building make for static debug
cmake -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=FALSE >> install.log
echo Complete
echo making
make >> install.log
echo Complete
echo Installing
sudo make install >> install.log
echo Complete
CMake Warning at CMakeLists.txt:150 (message):
No pkg-config files are provided for the static SFML libraries
(SFML_INSTALL_PKGCONFIG_FILES will be ignored).
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
sf::CircleShape shape(100.f);
shape.setFillColor(sf::Color::Green);
while (window.isOpen())
{
sf::Event event;
while (window.pollEvent(event))
{
if (event.type == sf::Event::Closed)
window.close();
}
window.clear();
window.draw(shape);
window.display();
}
return 0;
}
On Linux you probably don't need static and debug libraries. Only release/dynamic is relevant.
Static libs are not needed because Linux has a very good support for shared libraries. It might be useful until SFML 2 is released, because every version is different, but it's definitely not the final solution.
Debug libraries are not needed unless you plan to debug SFML itself.
Infact I liked cmake so much I went on to install sfml2 sfml1.6 thor1.1 thor2Why have you installed multiple versions of each library, what do you expect from it? That will lead to incompatibilites sooner or later, don't do it. Only install the newest version of each library.
It look like I had to add each of those additional dependencies one by one to codeblocks build options. For each project. No thanks.Doesn't Code::Blocks provide a possibility to add a set of dependencies/linker options at once, without repeating it for every project?