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> | 2025-01-08 06:40:53 +0100 |
commit | 5227ce308a750a790351c9435aab41a968a9ca40 (patch) | |
tree | e4b6fc8055d879b4b4f84b71261c1b0e3f265bc9 /README.adoc | |
parent | a424788fd90338b6da5d4dfd3c18cf3eab13acc8 (diff) | |
download | xK-5227ce308a750a790351c9435aab41a968a9ca40.tar.gz xK-5227ce308a750a790351c9435aab41a968a9ca40.tar.xz xK-5227ce308a750a790351c9435aab41a968a9ca40.zip |
Make xF a first-class citizen
Diffstat (limited to 'README.adoc')
-rw-r--r-- | README.adoc | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/README.adoc b/README.adoc index 495158f..1866b2a 100644 --- a/README.adoc +++ b/README.adoc @@ -33,9 +33,9 @@ including link:xC.adoc#_key_bindings[keyboard shortcuts]. image::xP.webp[align="center"] -xA, xT, xW, xM --------------- -Fyne, Qt Widgets, Win32, Cocoa frontends for 'xC'. +xA, xT, xF, xW, xM +------------------ +Fyne, Qt Widgets, X11, Win32, Cocoa frontends for 'xC'. Using them is not recommended. xD @@ -86,16 +86,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: |