mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
Redesigned gestures module to header-only
This commit is contained in:
@ -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.
|
||||
|
||||
Reference in New Issue
Block a user