summaryrefslogtreecommitdiffhomepage
path: root/examples/Makefile
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2016-11-21 19:49:54 +0100
committerraysan5 <[email protected]>2016-11-21 19:49:54 +0100
commitbdbb1eb90133c882ee84421b1b024b286a76d5ce (patch)
treecee6ba51808f081a1d0177dfbbe3fd9ca33fb7e4 /examples/Makefile
parent481ce3d39d8072d20b425dba928efe4cff522db9 (diff)
downloadraylib-bdbb1eb90133c882ee84421b1b024b286a76d5ce.tar.gz
raylib-bdbb1eb90133c882ee84421b1b024b286a76d5ce.zip
Added new text sample: text_bmfont_unordered
BMFont loading has been improved to support unordered chars and extended characters (up to 255)
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile
index da29e915..2cb75ff9 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -229,6 +229,7 @@ EXAMPLES = \
text_font_select \
text_writing_anim \
text_ttf_loading \
+ text_bmfont_unordered \
models_geometric_shapes \
models_box_collisions \
models_billboard \
@@ -418,6 +419,10 @@ text_writing_anim: text_writing_anim.c
text_ttf_loading: text_ttf_loading.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS)
+# compile [text] example - text bmfont unordered
+text_bmfont_unordered: text_bmfont_unordered.c
+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS)
+
# compile [models] example - basic geometric 3d shapes
models_geometric_shapes: models_geometric_shapes.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS)