From bce1a069a8dc2b7aec13a3d0f09eeb9ff8fe3809 Mon Sep 17 00:00:00 2001 From: Luis Alfredo Figueroa Bracamontes <92luisalfredo@protonmail.com> Date: Sat, 11 Jun 2022 12:58:41 -0500 Subject: [PATCH 1/2] Adding links to required libreries Adding the URLs to the repo of the required libraries to make even easier to use this program --- qoiconv.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qoiconv.c b/qoiconv.c index 79aa75cf..501ed833 100644 --- a/qoiconv.c +++ b/qoiconv.c @@ -2,7 +2,10 @@ Command line tool to convert between png <> qoi format -Requires "stb_image.h" and "stb_image_write.h" +Requires: + -"stb_image.h" (https://github.com/nothings/stb/blob/master/stb_image.h) + -"stb_image_write.h" (https://github.com/nothings/stb/blob/master/stb_image_write.h) + Compile with: gcc qoiconv.c -std=c99 -O3 -o qoiconv From 553eae423acba5e35fb036da4473925b4d54e94a Mon Sep 17 00:00:00 2001 From: Luis Alfredo Figueroa Bracamontes <92luisalfredo@protonmail.com> Date: Sat, 11 Jun 2022 13:26:59 -0500 Subject: [PATCH 2/2] Adding qoi.h dependency Adding the text to indicate that "qoi.h" is required to use this file --- qoiconv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/qoiconv.c b/qoiconv.c index 501ed833..f5fa93b1 100644 --- a/qoiconv.c +++ b/qoiconv.c @@ -5,6 +5,7 @@ Command line tool to convert between png <> qoi format Requires: -"stb_image.h" (https://github.com/nothings/stb/blob/master/stb_image.h) -"stb_image_write.h" (https://github.com/nothings/stb/blob/master/stb_image_write.h) + -"qoi.h" (https://github.com/phoboslab/qoi/blob/master/qoi.h) Compile with: gcc qoiconv.c -std=c99 -O3 -o qoiconv