diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2023-06-09 17:44:20 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2023-06-09 17:44:43 +0200 |
commit | 13cf0da8c4e7efbb966444cb7e0964c1a7e8466d (patch) | |
tree | ed159ce9dde2c4ca3566696eeed6fae0e18fba71 | |
parent | f05be01fba0113c324e0051b8997ef8c2ed90722 (diff) | |
download | nncmpp-13cf0da8c4e7efbb966444cb7e0964c1a7e8466d.tar.gz nncmpp-13cf0da8c4e7efbb966444cb7e0964c1a7e8466d.tar.xz nncmpp-13cf0da8c4e7efbb966444cb7e0964c1a7e8466d.zip |
Fix build without optional dependencies
-rw-r--r-- | CMakeLists.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 909e54d..9333b13 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,7 +28,7 @@ include (AddThreads) find_package (Termo QUIET NO_MODULE) add_option (USE_SYSTEM_TERMO - "Don't compile our own termo library, use the system one" ${Termo_FOUND}) + "Don't compile our own termo library, use the system one" "${Termo_FOUND}") if (USE_SYSTEM_TERMO) if (NOT Termo_FOUND) message (FATAL_ERROR "System termo library not found") @@ -49,7 +49,8 @@ else () endif () pkg_check_modules (fftw fftw3 fftw3f) -add_option (WITH_FFTW "Use FFTW to enable spectrum visualisation" ${fftw_FOUND}) +add_option (WITH_FFTW + "Use FFTW to enable spectrum visualisation" "${fftw_FOUND}") if (WITH_FFTW) if (NOT fftw_FOUND) message (FATAL_ERROR "FFTW not found") @@ -59,7 +60,7 @@ endif () pkg_check_modules (libpulse libpulse) add_option (WITH_PULSE - "Enable PulseAudio sink volume control" ${libpulse_FOUND}) + "Enable PulseAudio sink volume control" "${libpulse_FOUND}") if (WITH_PULSE) if (NOT libpulse_FOUND) message (FATAL_ERROR "libpulse not found") @@ -68,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 "Use FFTW to enable spectrum visualisation" "${x11_FOUND}") if (WITH_X11) if (NOT x11_FOUND) message (FATAL_ERROR "Some X11 libraries were not found") |