Skip to content

aaqib-dev-labs/cpp-task-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Task Manager Pro

A professional, library-based C++ Task Manager application. This project is structured as a robust starter template for modern C++ development.

Key Features

  • 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.

Build and Run

Prerequisites

  • CMake 3.14+
  • A C++17 compatible compiler
  • Doxygen (Optional, for documentation)

Compilation

# Create build directory
cmake -S . -B build

# Build the project
cmake --build build

Usage

# Add a task
./build/task_app add "Optimize performance"

# List tasks
./build/task_app list

# Mark task as complete
./build/task_app complete 0

Testing

cd build
ctest --output-on-failure

Documentation

To generate the API documentation:

cmake --build build --target docs

The output will be in docs/generated/html.

Project Structure

  • include/: Header files (Library API)
  • src/: Implementation files and CLI main
  • tests/: Unit tests
  • data/: Data storage
  • docs/: Documentation and landing page
  • .github/: CI/CD workflows

About

Professional-grade, library-based C++ Task Manager template. Features modern C++17 architecture, JSON-managed configuration, Doxygen documentation, and a robust CI/CD pipeline for cross-platform (Windows & Linux) builds and automated testing.

Topics

Resources

Stars

Watchers

Forks

Contributors