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
27f229b9
Commit
27f229b9
authored
Jun 21, 2015
by
Stephen Kelly
Browse files
cmMakefile: Move include scope out of ReadListFileInternal.
Simplify the ReadListFileInternal API.
parent
9166b49d
Changes
2
Show whitespace changes
Inline
Side-by-side
Source/cmMakefile.cxx
View file @
27f229b9
...
...
@@ -586,7 +586,12 @@ bool cmMakefile::ReadListFile(const char* listfile,
this
->
MarkVariableAsUsed
(
"CMAKE_CURRENT_LIST_FILE"
);
this
->
MarkVariableAsUsed
(
"CMAKE_CURRENT_LIST_DIR"
);
this
->
ReadListFileInternal
(
listFile
,
filenametoread
.
c_str
(),
noPolicyScope
);
IncludeScope
incScope
(
this
,
filenametoread
.
c_str
(),
noPolicyScope
);
this
->
ReadListFileInternal
(
listFile
);
if
(
cmSystemTools
::
GetFatalErrorOccured
())
{
incScope
.
Quiet
();
}
this
->
CheckForUnusedVariables
();
this
->
AddDefinition
(
"CMAKE_PARENT_LIST_FILE"
,
currentParentFile
.
c_str
());
...
...
@@ -600,12 +605,9 @@ bool cmMakefile::ReadListFile(const char* listfile,
return
true
;
}
void
cmMakefile
::
ReadListFileInternal
(
cmListFile
const
&
listFile
,
const
char
*
filenametoread
,
bool
noPolicyScope
)
void
cmMakefile
::
ReadListFileInternal
(
cmListFile
const
&
listFile
)
{
// Enforce balanced blocks (if/endif, function/endfunction, etc.).
IncludeScope
incScope
(
this
,
filenametoread
,
noPolicyScope
);
LexicalPushPop
lexScope
(
this
);
// Run the parsed commands.
...
...
@@ -618,7 +620,6 @@ void cmMakefile::ReadListFileInternal(cmListFile const& listFile,
{
// Exit early due to error.
lexScope
.
Quiet
();
incScope
.
Quiet
();
break
;
}
if
(
status
.
GetReturnInvoked
())
...
...
Source/cmMakefile.h
View file @
27f229b9
...
...
@@ -918,9 +918,7 @@ private:
bool
noPolicyScope
,
bool
requireProjectCommand
);
void
ReadListFileInternal
(
cmListFile
const
&
listFile
,
const
char
*
filenametoread
,
bool
noPolicyScope
);
void
ReadListFileInternal
(
cmListFile
const
&
listFile
);
bool
ParseDefineFlag
(
std
::
string
const
&
definition
,
bool
remove
);
...
...
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