Also seems to build quite nicely with MinGW 4.7.2. :)
As for the code... could need quite a bit of work to get a nice and tide codebase. ;)
For instance mouseInSquare is actually already implemented with sf::Rect<T>.
sf::IntRect(x, y, width, height).contains(sf::Mouse::getPosition(window));
Or instead of setting a texture for each tile, you should use a sprite sheet and just set different texture rects. Then there's the big Main file. I'd use an Application class with function like run(), update() and draw(). Your moveSelector function could probably also get trimmed down with less 'magic'/random number places. You probably should implement a parser and keep the data (which texture part relates to with tile) in an external file, which can then get parsed on runtime. This not only gives you way more freedom in adding/removing new stuff, but it also allows you to reduce the codebase dramatically.
Nope :/
mingw32-g++.exe -std=c++11 -Wall -DSFML_STATIC -std=c++11 -g -IC:\Users\newowner\Documents\TDM471x32\include -I"C:\Program Files\CodeBlocks\include" -c "C:\Users\newowner\Documents\Marcuzcraft 2D v0.1.3\Source\BlockHandler.cpp" -o "obj\Debug\Documents\Marcuzcraft 2D v0.1.3\Source\BlockHandler.o"
cc1plus.exe: error: unrecognized command line option '-std=c++11'
cc1plus.exe: error: unrecognized command line option '-std=c++11'
Process terminated with status 1 (0 minutes, 0 seconds)
0 errors, 0 warnings (0 minutes, 0 seconds)
THIS is the reason I have a Mac. :P hehe