We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc9aa11 commit c7a754aCopy full SHA for c7a754a
.gitignore
@@ -1,2 +1,3 @@
1
./obj
2
./main
3
+/SFML-2.5.1/*
makefile
@@ -1,6 +1,6 @@
build: ./src/*.cpp
g++ -std=c++17 -c ./src/*.cpp
- mv ./*.o ./obj
4
- g++ ./obj/*.o -o main -lsfml-graphics -lsfml-window -lsfml-system
+ mkdir -p obj && mv ./*.o ./obj
+ g++ ./obj/*.o -o main -lsfml-graphics -lsfml-window -lsfml-system
5
chmod 755 ./main
6
0 commit comments