mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-11-27 06:30:28 +08:00
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:
parent
6cbf662f14
commit
b0baf43114
@ -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})
|
||||
|
Loading…
Reference in New Issue
Block a user