An open API service indexing awesome lists of open source software.

https://github.com/andreaslill/qt-notes-md

A fast light-weight markdown note application written in C++ and QT.
https://github.com/andreaslill/qt-notes-md

cmake cpp qml qt qt6

Last synced: 3 months ago
JSON representation

A fast light-weight markdown note application written in C++ and QT.

Awesome Lists containing this project

README

          

# QT Notes MD
A fast light-weight markdown note application written in C++ using QT for GUI.

# How to build with CMake and ninja
### Configure
``` console
cmake -DCMAKE_TOOLCHAIN_FILE:FILEPATH=//gcc_64/lib/cmake/Qt6/qt.toolchain.cmake --no-warn-unused-cli -S -B/build -G "Ninja Multi-Config"
```
### Build (Debug)
``` console
cmake --build /build --config Debug
```
### Build (Release)
``` console
cmake --build /build --config Release
```