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.
6 lines
124 B
CMake
6 lines
124 B
CMake
# Add the executable
|
|
add_executable(Example main.cpp)
|
|
|
|
# Link against the library
|
|
target_link_libraries(Example MedicalLib)
|