21 lines
216 B
Markdown
21 lines
216 B
Markdown
|
|
||
|
# 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
|
||
|
```
|