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
5e24ff17
Commit
5e24ff17
authored
Jun 21, 2015
by
Stephen Kelly
Browse files
cmMakefile: Split file handling from execution.
parent
d5aaa2b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmMakefile.cxx
View file @
5e24ff17
...
...
@@ -561,6 +561,17 @@ bool cmMakefile::ReadListFile(const char* listfile,
cmSystemTools
::
CollapseFullPath
(
listfile
,
this
->
GetCurrentSourceDirectory
());
this
->
ListFileStack
.
push_back
(
filenametoread
);
cmListFile
listFile
;
bool
res
=
listFile
.
ParseFile
(
filenametoread
.
c_str
(),
requireProjectCommand
,
this
);
if
(
res
)
{
// add this list file to the list of dependencies
this
->
ListFiles
.
push_back
(
filenametoread
);
}
std
::
string
currentParentFile
=
this
->
GetSafeDefinition
(
"CMAKE_PARENT_LIST_FILE"
);
std
::
string
currentFile
...
...
@@ -574,16 +585,8 @@ bool cmMakefile::ReadListFile(const char* listfile,
this
->
MarkVariableAsUsed
(
"CMAKE_CURRENT_LIST_FILE"
);
this
->
MarkVariableAsUsed
(
"CMAKE_CURRENT_LIST_DIR"
);
this
->
ListFileStack
.
push_back
(
filenametoread
);
cmListFile
listFile
;
bool
res
=
listFile
.
ParseFile
(
filenametoread
.
c_str
(),
requireProjectCommand
,
this
);
if
(
res
)
{
// add this list file to the list of dependencies
this
->
ListFiles
.
push_back
(
filenametoread
);
this
->
ReadListFileInternal
(
listFile
,
filenametoread
.
c_str
(),
noPolicyScope
);
...
...
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