https://github.com/ctrlcctrlv/fontkonfig
Simple demonstration of Qt Designer
https://github.com/ctrlcctrlv/fontkonfig
Last synced: 23 days ago
JSON representation
Simple demonstration of Qt Designer
- Host: GitHub
- URL: https://github.com/ctrlcctrlv/fontkonfig
- Owner: ctrlcctrlv
- License: apache-2.0
- Created: 2024-04-29T20:52:41.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-29T20:53:19.000Z (about 2 years ago)
- Last Synced: 2025-10-11T04:28:43.477Z (8 months ago)
- Language: C++
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FontKonfig
This is just a silly little program to demonstrate Qt Designer.
It outputs the list of fonts `fontconfig` sees given a pattern.
## Building
```bash
make
```
or
```bash
moc fontkonfig.h -o fontkonfig.moc
uic fontkonfig.ui -o ui_fontkonfig.h
g++ -g -fPIC -O0 -std=c++11 -I/usr/include/qt/QtCore -I/usr/include/qt/QtGui -I/usr/include/qt/QtWidgets -I/usr/include/qt -I/usr/include -I. main.cpp -o FontKonfig -L/usr/lib/qt5 -L/usr/lib -lQt5Widgets -lQt5Gui -lQt5Core -lstdc++ -lfontconfig
```