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> | 2023-09-04 07:06:08 +0200 |
commit | c5c7547e4236d50ecd52f4acabf516b8c578ca8e (patch) | |
tree | bdcdd674d07a3e06c89f0e7e492386e9563b4480 /README.adoc | |
parent | 13d2ff115ba094380a25de50aa4e760a8f839103 (diff) | |
download | xK-c5c7547e4236d50ecd52f4acabf516b8c578ca8e.tar.gz xK-c5c7547e4236d50ecd52f4acabf516b8c578ca8e.tar.xz xK-c5c7547e4236d50ecd52f4acabf516b8c578ca8e.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 6784e84..489c48d 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 @@ -77,16 +81,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: |