diff options
author | Brad King <brad.king@kitware.com> | 2009-12-08 16:27:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-12-08 16:27:38 (GMT) |
commit | d4e26b7e881f97f1cef31b789a7252708cf1c06b (patch) | |
tree | 0b59a93c371b014774b48dff08dfcdc2fb743efd /Utilities | |
parent | 15316c12f50ae4d34dff855832346c4339574789 (diff) | |
download | CMake-d4e26b7e881f97f1cef31b789a7252708cf1c06b.zip CMake-d4e26b7e881f97f1cef31b789a7252708cf1c06b.tar.gz CMake-d4e26b7e881f97f1cef31b789a7252708cf1c06b.tar.bz2 |
Remove useless include file filters
The commit "Cleanup regular expressions" removed real include filter
expressions and replaced them with lines like
INCLUDE_REGULAR_EXPRESSION("^.*$")
that do no filtering. We simplify the change by removing the lines
altogether.
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmcurl/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Utilities/cmexpat/CMakeLists.txt | 1 | ||||
-rw-r--r-- | Utilities/cmzlib/CMakeLists.txt | 3 |
3 files changed, 0 insertions, 6 deletions
diff --git a/Utilities/cmcurl/CMakeLists.txt b/Utilities/cmcurl/CMakeLists.txt index 2a8a616..eef258f 100644 --- a/Utilities/cmcurl/CMakeLists.txt +++ b/Utilities/cmcurl/CMakeLists.txt @@ -4,8 +4,6 @@ IF(COMMAND CMAKE_POLICY) ENDIF(COMMAND CMAKE_POLICY) PROJECT(LIBCURL C) -INCLUDE_REGULAR_EXPRESSION("^.*$") - # Setup package meta-data SET(PACKAGE "curl") SET(VERSION "7.16.1") diff --git a/Utilities/cmexpat/CMakeLists.txt b/Utilities/cmexpat/CMakeLists.txt index 7dd8329..b75c112 100644 --- a/Utilities/cmexpat/CMakeLists.txt +++ b/Utilities/cmexpat/CMakeLists.txt @@ -1,5 +1,4 @@ PROJECT(CMEXPAT) -INCLUDE_REGULAR_EXPRESSION("^.*$") SET(expat_SRCS xmlparse.c diff --git a/Utilities/cmzlib/CMakeLists.txt b/Utilities/cmzlib/CMakeLists.txt index 5ee43e3..c42a434 100644 --- a/Utilities/cmzlib/CMakeLists.txt +++ b/Utilities/cmzlib/CMakeLists.txt @@ -6,9 +6,6 @@ INCLUDE_DIRECTORIES( "${CMZLIB_BINARY_DIR}/.." ) -# Match all headers for dependencies but complain about none. -INCLUDE_REGULAR_EXPRESSION("^.*$") - # source files for zlib SET(ZLIB_SRCS adler32.c compress.c crc32.c deflate.c gzio.c inffast.c |