Eigen/CMakeLists.txt: remove parens from if.

Only CMake 2.6.3 and later recognize this syntax, and at the moment we
require 2.6.2. CMake uses the right precendence, per its man page, so the
parentheses are not necessary.
This commit is contained in:
Jitse Niesen 2009-11-20 11:26:26 +00:00
parent 6cbf662f14
commit b0baf43114

View File

@ -1,6 +1,6 @@
file(GLOB Eigen_directory_files "*")
foreach(f ${Eigen_directory_files})
if(NOT(f MATCHES ".txt") AND NOT (f MATCHES "src"))
if(NOT f MATCHES ".txt" AND NOT f MATCHES "src")
list(APPEND Eigen_directory_files_to_install ${f})
endif()
endforeach(f ${Eigen_directory_files})