summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..b197c5f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,18 @@
+# Bezier curve drawing utility
+
+Simple tool that allows drawing a cubic bezier curve by placing its control
+points.
+
+## Building
+
+This utility depends solely on SDL3. As of now (2024-12-14) there is no official
+release of SDL3, so you might need to build it yourself.
+
+To build the program using meson, run the following commands.
+
+```sh
+meson setup build # Generate the build directory
+meson compile -C build # Compile the program
+```
+
+The resulting executagble will be stored in the build/ directory.
Go back to lisible.xyz