518277356a
- Rename all files, directories, and internal project names to "MedicalLib". - Replace the generic `add` function with a more domain-specific `calculateBMI` function as an initial example of the library's capabilities. - Update the `AGENTS.md` file to describe the new purpose and scope of the MedicalLib library.
7 lines
68 B
Bash
Executable File
7 lines
68 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
mkdir -p build
|
|
cd build
|
|
cmake ..
|
|
cmake --build .
|