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.
- Host: GitHub
- URL: https://github.com/andreaslill/qt-notes-md
- Owner: AndreasLill
- License: gpl-3.0
- Created: 2024-12-22T14:35:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-12T18:46:42.000Z (over 1 year ago)
- Last Synced: 2025-02-23T00:42:15.035Z (over 1 year ago)
- Topics: cmake, cpp, qml, qt, qt6
- Language: QML
- Homepage:
- Size: 90.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```