diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2023-06-14 09:26:23 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2024-11-04 07:40:15 +0100 |
commit | aff4dd6b8715625fdb7250671373bd77b947445d (patch) | |
tree | 6607fee7bd9a2d5c0379e145b9532c23ed0c6d18 /README.adoc | |
parent | b1ee29534562a03b5b74453942241e94df4ef21e (diff) | |
download | xK-aff4dd6b8715625fdb7250671373bd77b947445d.tar.gz xK-aff4dd6b8715625fdb7250671373bd77b947445d.tar.xz xK-aff4dd6b8715625fdb7250671373bd77b947445d.zip |
Make xF a first-class citizen
Diffstat (limited to 'README.adoc')
-rw-r--r-- | README.adoc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/README.adoc b/README.adoc index 3cfecb7..3db0db4 100644 --- a/README.adoc +++ b/README.adoc @@ -33,6 +33,10 @@ including link:xC.adoc#_key_bindings[keyboard shortcuts]. image::xP.webp[align="center"] +xF +-- +The X11 frontend for 'xC', still under development. + xD -- The IRC daemon. It is designed for use as a regular user application rather @@ -81,16 +85,17 @@ or as a https://git.janouch.name/p/nixexprs[Nix derivation]. Building -------- Build-only dependencies: CMake, pkg-config, awk, liberty (included), - asciidoctor or asciidoc (recommended but optional) + + asciidoctor or asciidoc (recommended but optional), rsvg-convert (for 'xF') + Common runtime dependencies: openssl + Additionally for 'xC': curses, libffi, readline >= 6.0 or libedit >= 2013-07-12, lua >= 5.3 (optional) + +Additionally for 'xF': x11, xrender, xft, fontconfig, libpng $ git clone --recursive https://git.janouch.name/p/xK.git $ mkdir xK/build $ cd xK/build $ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo \ - -DWANT_READLINE=ON -DWANT_LIBEDIT=OFF -DWITH_LUA=ON + -DWANT_READLINE=ON -DWANT_LIBEDIT=OFF -DWITH_LUA=ON -DWITH_XF=OFF $ make To install the application, you can do either the usual: |