Skip to content
GitLab
Menu
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
05ce4afb
Commit
05ce4afb
authored
Apr 25, 2003
by
Andy Cedilnik
Browse files
ENH: Rename option -D to -C because we will use -D later
parent
8a96b2ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/ctest.cxx
View file @
05ce4afb
...
...
@@ -38,7 +38,7 @@ int main (int argc, char *argv[])
for
(
unsigned
int
i
=
1
;
i
<
args
.
size
();
++
i
)
{
std
::
string
arg
=
args
[
i
];
if
(
arg
.
find
(
"-
D
"
,
0
)
==
0
&&
i
<
args
.
size
()
-
1
)
if
(
arg
.
find
(
"-
C
"
,
0
)
==
0
&&
i
<
args
.
size
()
-
1
)
{
inst
.
m_ConfigType
=
args
[
i
+
1
];
}
...
...
@@ -102,7 +102,7 @@ int main (int argc, char *argv[])
arg
.
find
(
"/?"
)
==
0
)
{
std
::
cerr
<<
"Usage: "
<<
argv
[
0
]
<<
" <options>"
<<
std
::
endl
<<
"
\t
-
D
type Specify config type"
<<
std
::
endl
<<
"
\t
-
C
type Specify config type"
<<
std
::
endl
<<
"
\t
-E test Specify regular expression for tests to exclude"
<<
std
::
endl
<<
"
\t
-R test Specify regular expression for tests to include"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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