mirror of
https://github.com/reactos/CMake.git
synced 2024-11-23 19:49:51 +00:00
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.
This commit is contained in:
parent
15316c12f5
commit
d4e26b7e88
@ -346,7 +346,6 @@ SET(EXECUTABLE_OUTPUT_PATH ${CMake_BINARY_DIR}/bin CACHE INTERNAL
|
|||||||
"Where to put the executables for CMake")
|
"Where to put the executables for CMake")
|
||||||
SET(LIBRARY_OUTPUT_PATH "" CACHE INTERNAL
|
SET(LIBRARY_OUTPUT_PATH "" CACHE INTERNAL
|
||||||
"Where to put the libraries for CMake")
|
"Where to put the libraries for CMake")
|
||||||
INCLUDE_REGULAR_EXPRESSION("^.*$")
|
|
||||||
|
|
||||||
# The CMake executables usually do not need any rpath to run in the build or
|
# The CMake executables usually do not need any rpath to run in the build or
|
||||||
# install tree.
|
# install tree.
|
||||||
|
@ -4,8 +4,6 @@ IF(COMMAND CMAKE_POLICY)
|
|||||||
ENDIF(COMMAND CMAKE_POLICY)
|
ENDIF(COMMAND CMAKE_POLICY)
|
||||||
PROJECT(LIBCURL C)
|
PROJECT(LIBCURL C)
|
||||||
|
|
||||||
INCLUDE_REGULAR_EXPRESSION("^.*$")
|
|
||||||
|
|
||||||
# Setup package meta-data
|
# Setup package meta-data
|
||||||
SET(PACKAGE "curl")
|
SET(PACKAGE "curl")
|
||||||
SET(VERSION "7.16.1")
|
SET(VERSION "7.16.1")
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
PROJECT(CMEXPAT)
|
PROJECT(CMEXPAT)
|
||||||
INCLUDE_REGULAR_EXPRESSION("^.*$")
|
|
||||||
|
|
||||||
SET(expat_SRCS
|
SET(expat_SRCS
|
||||||
xmlparse.c
|
xmlparse.c
|
||||||
|
@ -6,9 +6,6 @@ INCLUDE_DIRECTORIES(
|
|||||||
"${CMZLIB_BINARY_DIR}/.."
|
"${CMZLIB_BINARY_DIR}/.."
|
||||||
)
|
)
|
||||||
|
|
||||||
# Match all headers for dependencies but complain about none.
|
|
||||||
INCLUDE_REGULAR_EXPRESSION("^.*$")
|
|
||||||
|
|
||||||
# source files for zlib
|
# source files for zlib
|
||||||
SET(ZLIB_SRCS
|
SET(ZLIB_SRCS
|
||||||
adler32.c compress.c crc32.c deflate.c gzio.c inffast.c
|
adler32.c compress.c crc32.c deflate.c gzio.c inffast.c
|
||||||
|
Loading…
Reference in New Issue
Block a user