Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 398 Bytes

File metadata and controls

19 lines (14 loc) · 398 Bytes

brr microtext

A simple text renderer for brr.h

Build

# macOS
gcc -x objective-c -framework Cocoa microtext.c -o microtext && ./microtext

# linux
gcc microtext.c -lX11 -lXext -o microtext && ./microtext

# windows (MSVC)
cl microtext.c && microtext.exe

# windows (mingw)
gcc microtext.c -mwindows -o microtext.exe && ./microtext.exe