Description: CMake no longer supports CMP0042 set to OLD:
  CMake Error at CMakeLists.txt:14 (CMAKE_POLICY):
    Policy CMP0042 may not be set to OLD behavior because this version of CMake
    no longer supports it.  The policy was introduced in CMake version 3.0.0,
    and use of NEW behavior is now required.
    Please either update your CMakeLists.txt files to conform to the new
    behavior or use an older version of CMake that still supports the old
    behavior.  Run cmake --help-policy CMP0042 for more information.
Bug-Debian: https://bugs.debian.org/1113350
Author: Andrius Merkys <merkys@debian.org>
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,7 +11,7 @@
 if(COMMAND cmake_policy)
   cmake_policy(SET CMP0003 NEW)
   if(POLICY CMP0042)
-    cmake_policy(SET CMP0042 OLD)
+    # cmake_policy(SET CMP0042 OLD)
   endif()
 endif()
 
