This is a simple Library Management System written in C++.
lms/
├── build/ # Compiled binaries (auto-generated)
├── data/ # Data files (auto-generated)
├── src/ # Source code
│ ├── main.cpp # Modern C++ version
│ └── main_legacy.cpp # Turbo C++ legacy version
└── .gitignore
├── README.md
- Build the project:
g++ src/main.cpp -o build/main
- Run the program:
./build/main
- Build the project:
g++ src/main.cpp -o build/main.exe
- Run the program:
.\build\main.exe
Ensure you have a C++ compiler (such as g++) installed. The application will automatically create the necessary data directory and files on first run.