From 5737afc8221b824c1594f85adadad4652c70aa35 Mon Sep 17 00:00:00 2001 From: Flinner Yuu Date: Wed, 4 Dec 2024 11:59:40 +0300 Subject: [PATCH] doc: build insructions --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..dcb40b7 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ + +# Build Instructions + +Clone the repo: +```bash +git clone https://gitea.ammar.engineer/ammar/CS207-HW3 +cd CS207-HW3 +``` + +Build: +```bash +cmake -B build -G Ninja +ninja -C build +``` + +Run: + +```bash +./build/ClinicApp + ```