diff options
| author | Joel Davis <[email protected]> | 2016-12-31 15:06:39 -0800 |
|---|---|---|
| committer | Joel Davis <[email protected]> | 2016-12-31 15:06:39 -0800 |
| commit | 037da8879a3ae61b09d8388bc2b4a2fe5359256a (patch) | |
| tree | 15f63d24730128f9a3534d20c866f2898e4490e1 /examples/Makefile | |
| parent | 202f45415c98df2201202ba8edb10b6496cbeb62 (diff) | |
| download | raylib-037da8879a3ae61b09d8388bc2b4a2fe5359256a.tar.gz raylib-037da8879a3ae61b09d8388bc2b4a2fe5359256a.zip | |
Added RaycastGround and ray picking example
Diffstat (limited to 'examples/Makefile')
| -rw-r--r-- | examples/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile index 710e97c4..676529c7 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -203,6 +203,7 @@ EXAMPLES = \ core_gestures_detection \ core_3d_mode \ core_3d_picking \ + core_3d_raypick \ core_3d_camera_free \ core_3d_camera_first_person \ core_2d_camera \ @@ -320,6 +321,11 @@ core_3d_mode: core_3d_mode.c core_3d_picking: core_3d_picking.c $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS) +# compile [core] example - 3d ray picking +core_3d_raypick: core_3d_raypick.c + $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS) + + # compile [core] example - 3d camera free core_3d_camera_free: core_3d_camera_free.c $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS) |
