Files
SuwaUI/README.md
2026-01-19 00:38:46 +09:00

19 lines
557 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# SuwaUI
C言語、C++、Zigで使えるGUIライブラリ現在X11のみ。\
このライブラリは1つのヘッダーのみで使えます。
A GUI library for C, C++, and Zig (currently X11 only).
This library can be used with just one header.
## 使い方 | Usage
### ウィンドウのみ | Only window
```sh
cc -DSUWAUI_IMPLEMENTS_SUWAWINDOW *.c ...
```
### ウィンドウ・ボタン・ラベル | Window・Button・Label
```sh
cc -DSUWAUI_IMPLEMENTS_SUWAWINDOW -DSUWAUI_IMPLEMENTS_SUWALABEL -DSUWAUI_IMPLEMENTS_SUWABUTTON *.c ...
```