Redesigned gestures module to header-only

This commit is contained in:
raysan5
2016-08-06 16:32:46 +02:00
parent d5f5f0a930
commit 3b80e2c1e0
6 changed files with 458 additions and 494 deletions

View File

@ -168,7 +168,7 @@ endif
# compile all modules with their prerequisites
# compile core module
core.o : core.c raylib.h rlgl.h utils.h raymath.h
core.o : core.c raylib.h rlgl.h utils.h raymath.h gestures.h
$(CC) -c $< $(CFLAGS) $(INCLUDES) -D$(PLATFORM)
# compile rlgl module
@ -207,10 +207,6 @@ utils.o : utils.c utils.h
camera.o : camera.c raylib.h
$(CC) -c $< $(CFLAGS) $(INCLUDES)
#compile gestures module
gestures.o : gestures.c raylib.h
$(CC) -c $< $(CFLAGS) $(INCLUDES)
# It installs generated and needed files to compile projects using raylib.
# The installation works manually.
# TODO: add other platforms.