I'm very sorry for not providing ready-libraries for linux, because i'm not familiar with linux.
So to solve this problem i made the project open-source to let anyone build his own version under the system that he is working on .
But maybe in the next versions of SFBL,I'll try my best to provide ready-libraries for The most used systems .
Well I've started working on it, but I've never compiled a library without the use of a build system that configured it to compile. I think I'm close, but still getting an error. Not sure if I should start a new thread, but I'll post it here for now :
/usr/bin/g++ -c "/home/spirro/C++Work/sfbl/sfbl.cpp" -g -O0 -std=c++11 -Wall -o ./Debug/sfbl.cpp.o -I. -I/usr/include -I/usr/local/include
/usr/bin/g++ -shared -fPIC -o ./Debug/sfbl.so @"sfbl.txt" -L. -L/usr/lib/x86_64-linux-gnu -L/usr/local/lib -lsfml-graphics-d -lsfml-window-d -lsfml-system-d
/usr/bin/ld: ./Debug/sfbl.cpp.o: relocation R_X86_64_32 against `.rodata' can not be used when making a shared object; recompile with -fPIC
./Debug/sfbl.cpp.o: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
make[1]: *** [Debug/sfbl.so] Error 1
make[1]: Leaving directory `/home/spirro/C++Work/sfbl'
It tells me to recompile with -fPIC, but, as you can see, that -fPIC is in there. Now whether or not it's in the right place, I'm still unsure and checking.