1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: fix taglib version checking 1.11.1 or above
In CMakeLists.txt we need to check if the taglib system version is 1.11.1 or
above and not above 1.11.1 because there is no release above.
Author: Thomas Pierson <contact@thomaspierson.fr>
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -131,7 +131,7 @@
# The current taglib in 3rdparty also has the following features used by Clementine:
# - Audio file detection by content.
#
-if (TAGLIB_VERSION VERSION_GREATER 1.11.1)
+if (TAGLIB_VERSION VERSION_GREATER_EQUAL 1.11.1)
option(USE_SYSTEM_TAGLIB "Use system taglib" ON)
else()
option(USE_SYSTEM_TAGLIB "Use system taglib" OFF)
|