On CMake 2.8.12.2 under Scientific Linux release 6.6 (Carbon), I got this error message during `cmake ..` followed by a halt. ``` bash CMake Error at CMakeLists.txt:24 (cmake_policy): Policy "CMP0026" is not known to this version of CMake. ``` Removing this line successfully got me past the error without any noticeable side-effects. ``` bash # On Visual 2005 and above, this module can set the debug working directory # cmake_policy(SET CMP0026 OLD) ```