2024-12-04 08:59:40 +00:00
|
|
|
|
|
|
|
# Build Instructions
|
|
|
|
|
|
|
|
Clone the repo:
|
|
|
|
```bash
|
|
|
|
git clone https://gitea.ammar.engineer/ammar/CS207-HW3
|
|
|
|
cd CS207-HW3
|
|
|
|
```
|
|
|
|
|
2024-12-04 09:05:00 +00:00
|
|
|
Then Choose to build with `Ninja` or `Make`
|
|
|
|
|
|
|
|
|
|
|
|
Build With Make:
|
|
|
|
```bash
|
|
|
|
cmake -B build
|
|
|
|
cmake --build build
|
|
|
|
```
|
|
|
|
|
|
|
|
Build With Ninja:
|
2024-12-04 08:59:40 +00:00
|
|
|
```bash
|
|
|
|
cmake -B build -G Ninja
|
|
|
|
ninja -C build
|
|
|
|
```
|
|
|
|
|
|
|
|
Run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./build/ClinicApp
|
|
|
|
```
|