diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2023-06-17 21:47:12 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2023-06-17 21:50:46 +0200 |
commit | eb925f18c821fc5c49bb184ce842364e8194a0eb (patch) | |
tree | f2831e82b0376355f45b64aba96293397205343a | |
parent | 0c35cc301dc735606b3d1c1929319152ab9deef4 (diff) | |
download | nncmpp-eb925f18c821fc5c49bb184ce842364e8194a0eb.tar.gz nncmpp-eb925f18c821fc5c49bb184ce842364e8194a0eb.tar.xz nncmpp-eb925f18c821fc5c49bb184ce842364e8194a0eb.zip |
Fix CMake option description
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f5e8afd..c49574e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -69,7 +69,7 @@ if (WITH_PULSE) endif () pkg_check_modules (x11 x11 xrender xft fontconfig) -add_option (WITH_X11 "Use FFTW to enable spectrum visualisation" "${x11_FOUND}") +add_option (WITH_X11 "Build with X11 support" "${x11_FOUND}") if (WITH_X11) if (NOT x11_FOUND) message (FATAL_ERROR "Some X11 libraries were not found") |