mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-12 10:37:43 +00:00
26 lines
542 B
Markdown
26 lines
542 B
Markdown
# Keyman engine for IBus
|
|
|
|
## Requirements
|
|
|
|
You need autoconf, autopoint, gettext, automake and libtool to generate the build system.
|
|
|
|
Run `./autogen.sh` to run them.
|
|
|
|
## Building
|
|
|
|
```bash
|
|
./autogen.sh
|
|
./configure
|
|
make
|
|
sudo make install
|
|
```
|
|
|
|
For a debug build:
|
|
|
|
```bash
|
|
./configure CPPFLAGS=-DG_MESSAGES_DEBUG CFLAGS="-g -O0" CXXFLAGS="-g -O0"
|
|
```
|
|
|
|
To use the header files from the source repo, add the additional parameter
|
|
`KEYMAN_PROC_CFLAGS="-I../../common/core/desktop/build/include -I../../common/core/desktop/include"`
|
|
to `./configure`.
|