From 0c3dce967f58bc54d83513b6cfdbf1acb55d510d Mon Sep 17 00:00:00 2001 From: Clément Sibille Date: Sat, 14 Dec 2024 10:00:33 +0100 Subject: Initial commit --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md (limited to 'README.md') 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. -- cgit v1.2.3