A professional, library-based C++ Task Manager application. This project is structured as a robust starter template for modern C++ development.
- Library-based Architecture: Core logic resides in
TaskManagerLib. - JSON Configuration: Configuration managed via
config.json. - Doxygen Documentation: Automatic API documentation generation.
- Cross-Platform: Full support for Windows (MSVC) and Linux (GCC/Clang).
- Automated CI: GitHub Actions workflows for multi-platform builds and tests.
- CMake 3.14+
- A C++17 compatible compiler
- Doxygen (Optional, for documentation)
# Create build directory
cmake -S . -B build
# Build the project
cmake --build build# Add a task
./build/task_app add "Optimize performance"
# List tasks
./build/task_app list
# Mark task as complete
./build/task_app complete 0cd build
ctest --output-on-failureTo generate the API documentation:
cmake --build build --target docsThe output will be in docs/generated/html.
include/: Header files (Library API)src/: Implementation files and CLI maintests/: Unit testsdata/: Data storagedocs/: Documentation and landing page.github/: CI/CD workflows