Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 747 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 747 Bytes

SQLite Todo App

A simple TODO-list manager that uses an SQLite database and shows off the command, singleton and iterator pattern. Written in modern C++.

Compilation

Windows

Desktop Development with C++ needs to be installed for Visual Studio.

Run with Developer Command Prompt for VS 2022:

cmake --preset windows

Open the Visual Studio solution in the build folder or run:

cmake --build build --parallel
call build\Debug\sqlite_todo.exe

MacOS (Untested)

CMake and XCode is required.

cmake --preset mac

Open the XCode project placed in the build directory.

Credits