Commit fd0f6b677b9d0dc8d52a920194cf8a5ff258646e
1 parent
ab4200c6
Intégration de la sfml
Showing
4 changed files
with
8 additions
and
3 deletions
Show diff stats
Makefile
1 | 1 | # Variables |
2 | 2 | ## Compilation |
3 | 3 | CXX = g++ |
4 | -#CXXFLAGS = -lsfml-graphics -lsfml-window -lsfml-system | |
4 | +CXXFLAGS = -lsfml-graphics -lsfml-window -lsfml-system | |
5 | 5 | |
6 | 6 | # Programmes possibles |
7 | 7 | main: bin/main |
8 | 8 | |
9 | 9 | # Éxecutables |
10 | -bin/main: obj/main.o obj/test.o obj/testClasse.o | |
10 | +bin/main: obj/main.o obj/test.o obj/testClasse.o obj/sfmlTest.o | |
11 | 11 | $(CXX) $^ -o $@ $(CXXFLAGS) |
12 | 12 | |
13 | 13 | # Objets | ... | ... |
src/main.cpp
src/sfmlTest.cpp
... | ... | @@ -0,0 +1 @@ |
1 | +int sfmlTest(); | ... | ... |