From 5fba062dde424fa17165c9ac45f2260bee4deb4d Mon Sep 17 00:00:00 2001 From: qqwqqw689 <114795525+qqwqqw689@users.noreply.github.com> Date: Tue, 31 Dec 2024 14:33:07 +0800 Subject: [PATCH] Update example.c --- example.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/example.c b/example.c index f0b427e..86f4035 100644 --- a/example.c +++ b/example.c @@ -1,6 +1,7 @@ /* gifdec example -- simple GIF player using SDL2 + * First, you need to install SDL2. * compiling: - * cc `pkg-config --cflags --libs sdl2` -o example gifdec.c example.c + * gcc -o example example.c gifdec.c -I/usr/local/include/SDL2 -lSDL2 * executing: * ./example animation.gif * */