mirror of
https://github.com/AntoineHX/LivingMachine.git
synced 2025-05-04 05:40:46 +02:00
Suppresion fichier inutile, Changement makefile, Debut SFML, Ajout mode CONFIG/SFML
This commit is contained in:
parent
166879222f
commit
71756d4954
43 changed files with 152 additions and 3821 deletions
15
Code/Makefile
Normal file
15
Code/Makefile
Normal file
|
@ -0,0 +1,15 @@
|
|||
EXEC= KirbyTrack
|
||||
|
||||
LSFML = -lsfml-graphics -lsfml-window -lsfml-system
|
||||
CFLAGS = -Wall
|
||||
|
||||
all: $(EXEC)
|
||||
|
||||
KirbyTrack : KirbyTrack.o
|
||||
g++ -o $@ $< `pkg-config opencv --libs` $(LSFML)
|
||||
|
||||
KirbyTrack.o : KirbyTrack.c
|
||||
g++ -o $@ -c $< `pkg-config opencv --cflags`
|
||||
|
||||
clean :
|
||||
rm -f *.o $(EXEC)
|
Loading…
Add table
Add a link
Reference in a new issue