1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Description: Add an explicit Cmake option to be able to disable visualization.
Author: Thomas Pierson <contact@thomaspierson.fr>
Last-Update: 2020-02-11
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -348,6 +348,7 @@
# and don't exist on my mingw toolchain
list(REMOVE_ITEM QT_LIBRARIES "-lGLU -lGL")
+option(HAVE_VISUALISATIONS "Enable visualization module" ON)
option(USE_SYSTEM_PROJECTM "Don't set this option unless your system projectM library has been compiled with the Clementine patches in 3rdparty" OFF)
option(BUNDLE_PROJECTM_PRESETS "Install Clementine's own copies of libprojectm presets - disable this if you want to use a system package instead" ON)
|