https://github.com/misterabdul/kbbi-gtk
KBBI Offline remake with GTK3
https://github.com/misterabdul/kbbi-gtk
c gtk3 gui-application kbbi linux
Last synced: 2 months ago
JSON representation
KBBI Offline remake with GTK3
- Host: GitHub
- URL: https://github.com/misterabdul/kbbi-gtk
- Owner: misterabdul
- License: gpl-3.0
- Created: 2021-06-07T13:45:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-23T02:27:56.000Z (almost 5 years ago)
- Last Synced: 2025-03-03T05:43:56.765Z (over 1 year ago)
- Topics: c, gtk3, gui-application, kbbi, linux
- Language: C
- Homepage:
- Size: 133 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# KBBI GTK
KBBI offline remake with GTK3.
This is my hobby project to learn more about C programming, widget programming using GTK, and dynamic library. Feel free to explore, fork, or create a pull request if you interested.

## Todo
- [ ] AppImage packaging
- [ ] Unit testing with CMake (?)
## Building
```sh
# Create build directory
$ mkdir -p build
$ cd build
# Run cmake to generate build files
$ cmake ..
# Run make to start building
$ make
# Optional: run install script to install the apps
$ sudo make install
# Optional: run uninstall script to uninstall the apps
$ sudo make uninstall
```