Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
8b951255
Commit
8b951255
authored
Dec 30, 2005
by
Andy Cedilnik
Browse files
COMP: Cleanup regular expressions
parent
7b022210
Changes
6
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
8b951255
...
...
@@ -147,7 +147,7 @@ SET(LIBRARY_OUTPUT_PATH "" CACHE INTERNAL
"Where to put the libraries for CMake"
)
INCLUDE_REGULAR_EXPRESSION
(
"^
(
\\
.
\\
./)?(cm|CMake|form|ctest)
.*"
)
INCLUDE_REGULAR_EXPRESSION
(
"^.*
$
"
)
CONFIGURE_FILE
(
${
CMake_SOURCE_DIR
}
/Tests/.NoDartCoverage
${
CMake_BINARY_DIR
}
/Tests/.NoDartCoverage
)
...
...
Source/CMakeLists.txt
View file @
8b951255
CMAKE_MINIMUM_REQUIRED
(
VERSION 1.5
)
INCLUDE_REGULAR_EXPRESSION
(
"^.*$"
)
# configure the .h file
CONFIGURE_FILE
(
"
${
CMake_SOURCE_DIR
}
/Source/cmConfigure.cmake.h.in"
...
...
Utilities/cmcurl/CMakeLists.txt
View file @
8b951255
CMAKE_MINIMUM_REQUIRED
(
VERSION 2.0
)
PROJECT
(
LIBCURL C
)
INCLUDE_REGULAR_EXPRESSION
(
"^.*
\\
.h
$"
)
INCLUDE_REGULAR_EXPRESSION
(
"^.*$"
)
# Setup package meta-data
SET
(
PACKAGE
"curl"
)
...
...
Utilities/cmexpat/CMakeLists.txt
View file @
8b951255
PROJECT
(
CMEXPAT
)
INCLUDE_REGULAR_EXPRESSION
(
"^
(expat|xml|ascii|utf|name|iascii|latin|cm)
.*$"
)
INCLUDE_REGULAR_EXPRESSION
(
"^.*$"
)
SET
(
expat_SRCS
xmlparse.c
...
...
Utilities/cmtar/CMakeLists.txt
View file @
8b951255
CMAKE_MINIMUM_REQUIRED
(
VERSION 2.0
)
PROJECT
(
LIBTAR C
)
INCLUDE_REGULAR_EXPRESSION
(
"^.*
\\
.h
$"
)
INCLUDE_REGULAR_EXPRESSION
(
"^.*$"
)
# We need ansi c-flags, especially on HP
SET
(
CMAKE_C_FLAGS
"
${
CMAKE_ANSI_CFLAGS
}
${
CMAKE_C_FLAGS
}
"
)
...
...
Utilities/cmzlib/CMakeLists.txt
View file @
8b951255
PROJECT
(
CMZLIB
)
INCLUDE_REGULAR_EXPRESSION
(
"^(deflate|inf|trees|zconf|zlib|zutil).*$"
)
INCLUDE_DIRECTORIES
(
"
${
CMZLIB_SOURCE_DIR
}
"
...
...
@@ -13,7 +12,7 @@ INCLUDE_DIRECTORIES(
ADD_DEFINITIONS
(
-DCMZLIB_IN_C
)
# Match all headers for dependencies but complain about none.
INCLUDE_REGULAR_EXPRESSION
(
"^.*$"
"^$"
)
INCLUDE_REGULAR_EXPRESSION
(
"^.*$"
)
# source files for zlib
SET
(
ZLIB_SRCS
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment