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
b194f666
Commit
b194f666
authored
Feb 25, 2002
by
Sebastien Barre
Browse files
ENH: Expand vars in SUBDIRS
parent
cd9157d9
Changes
1
Show whitespace changes
Inline
Side-by-side
Source/cmSubdirCommand.cxx
View file @
b194f666
...
...
@@ -24,10 +24,12 @@ bool cmSubdirCommand::InitialPass(std::vector<std::string> const& args)
this
->
SetError
(
"called with incorrect number of arguments"
);
return
false
;
}
std
::
string
temp
;
for
(
std
::
vector
<
std
::
string
>::
const_iterator
i
=
args
.
begin
();
i
!=
args
.
end
();
++
i
)
{
m_Makefile
->
AddSubDirectory
((
*
i
).
c_str
());
temp
=
*
i
;
m_Makefile
->
AddSubDirectory
(
m_Makefile
->
ExpandVariablesInString
(
temp
));
}
return
true
;
}
...
...
Write
Preview
Supports
Markdown
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