Posts by Murilo Cadanus da Costa • 11 points
1 post
-
1
votes1
answer319
viewsA: How to compile c++ with SFML library within the project itself
Yes, just use the path from where the lib is that you want to use with the -L + directory argument g++ -Wall src/main.cpp src/game.cpp -I include -o bin/app -L lib/SFML-2.3.2 -lsfml-system…