1
General / Re: Installing SFML on a ubuntu machine
« on: November 29, 2012, 08:01:51 am »
Ok since you recommended me to install sfml2. I am now following this tutorial http://sfmlcoder.wordpress.com/2011/08/16/building-sfml-2-0-with-make-for-gcc/ . I installed everything but once I run this code command
I then received this error once I tried to run this simple command.
Do you have any clue why?
Thanks for all your help.
-Chris
********************************EDIT*****************************************
Simple solution. No spaces inbetween and everything works as intended. I figured I edit for future reference to anyone following that tutorial.
Quote
cmake -G "Unix Makefiles" -D CMAKE_BUILD_TYPE=Debug -D BUILD_SHARED_LIBS=TRUE
I then received this error once I tried to run this simple command.
Quote
cmake -G "Unix Makefiles" -D CMAKE_BUILD_TYPE=Debug -D BUILD_SHARED_LIBS=TRUE
CMake Error:
The path to the source directory:
/home/chris/Development/sfml2ss/BUILD_SHARED_LIBS=TRUE
contains unsupported character '='.
Please use a different source directory name.
Do you have any clue why?
Thanks for all your help.
-Chris
********************************EDIT*****************************************
Simple solution. No spaces inbetween and everything works as intended. I figured I edit for future reference to anyone following that tutorial.
Quote
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=TRUE