Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CMake
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bmuzzin
CMake
Commits
347572cf
Commit
347572cf
authored
8 years ago
by
Sebastian Holtermann
Committed by
Brad King
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Autogen: Only touch an unchanged moc_compilation.cpp
parent
03df033b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Source/cmQtAutoGenerators.cxx
+37
-36
37 additions, 36 deletions
Source/cmQtAutoGenerators.cxx
with
37 additions
and
36 deletions
Source/cmQtAutoGenerators.cxx
+
37
−
36
View file @
347572cf
...
...
@@ -1070,6 +1070,9 @@ bool cmQtAutoGenerators::MocGenerateAll(
return
true
;
}
bool
mocCompFileGenerated
=
false
;
bool
mocCompChanged
=
false
;
// look for name collisions
{
std
::
multimap
<
std
::
string
,
std
::
string
>
collisions
;
...
...
@@ -1089,8 +1092,7 @@ bool cmQtAutoGenerators::MocGenerateAll(
return
false
;
}
}
// generate moc files that are included by source files.
// Generate moc files that are included by source files.
{
const
std
::
string
subDir
=
"include/"
;
for
(
std
::
map
<
std
::
string
,
std
::
string
>::
const_iterator
it
=
...
...
@@ -1103,16 +1105,14 @@ bool cmQtAutoGenerators::MocGenerateAll(
}
}
}
// generate moc files that are _not_ included by source files.
bool
automocCppChanged
=
false
;
// Generate moc files that are _not_ included by source files.
{
const
std
::
string
subDir
;
for
(
std
::
map
<
std
::
string
,
std
::
string
>::
const_iterator
it
=
mocsNotIncluded
.
begin
();
it
!=
mocsNotIncluded
.
end
();
++
it
)
{
if
(
this
->
MocGenerateFile
(
it
->
first
,
it
->
second
,
subDir
,
mocDepends
))
{
automocCppChang
ed
=
true
;
mocCompFileGenerat
ed
=
true
;
}
else
{
if
(
this
->
RunMocFailed
)
{
return
false
;
...
...
@@ -1141,46 +1141,47 @@ bool cmQtAutoGenerators::MocGenerateAll(
automocSource
=
outStream
.
str
();
}
// Check if we even need to update moc_compilation.cpp
if
(
!
automocCppChanged
)
{
// compare contents of the moc_compilation.cpp file
// Check if the content of moc_compilation.cpp changed
{
const
std
::
string
oldContents
=
ReadAll
(
this
->
MocCppFilenameAbs
);
if
(
oldContents
==
automocSource
)
{
// nothing changed: don't touch the moc_compilation.cpp file
if
(
this
->
Verbose
)
{
std
::
ostringstream
err
;
err
<<
"AutoMoc: "
<<
this
->
MocCppFilenameRel
<<
" still up to date"
<<
std
::
endl
;
this
->
LogInfo
(
err
.
str
());
}
return
true
;
}
mocCompChanged
=
(
oldContents
!=
automocSource
);
}
// Actually write moc_compilation.cpp
this
->
LogBold
(
"Generating MOC compilation "
+
this
->
MocCppFilenameRel
);
bool
success
=
true
;
if
(
mocCompChanged
)
{
// Actually write moc_compilation.cpp
this
->
LogBold
(
"Generating MOC compilation "
+
this
->
MocCppFilenameRel
);
// Make sure the parent directory exists
bool
success
=
this
->
MakeParentDirectory
(
this
->
MocCppFilenameAbs
);
if
(
success
)
{
cmsys
::
ofstream
outfile
;
outfile
.
open
(
this
->
MocCppFilenameAbs
.
c_str
(),
std
::
ios
::
trunc
);
if
(
!
outfile
)
{
success
=
false
;
std
::
ostringstream
err
;
err
<<
"AutoMoc: error opening "
<<
this
->
MocCppFilenameAbs
<<
"
\n
"
;
this
->
LogError
(
err
.
str
());
}
else
{
outfile
<<
automocSource
;
// Check for write errors
if
(
!
outfile
.
good
())
{
// Make sure the parent directory exists
success
=
this
->
MakeParentDirectory
(
this
->
MocCppFilenameAbs
);
if
(
success
)
{
cmsys
::
ofstream
outfile
;
outfile
.
open
(
this
->
MocCppFilenameAbs
.
c_str
(),
std
::
ios
::
trunc
);
if
(
!
outfile
)
{
success
=
false
;
std
::
ostringstream
err
;
err
<<
"AutoMoc: error
writ
ing "
<<
this
->
MocCppFilenameAbs
<<
"
\n
"
;
err
<<
"AutoMoc: error
open
ing "
<<
this
->
MocCppFilenameAbs
<<
"
\n
"
;
this
->
LogError
(
err
.
str
());
}
else
{
outfile
<<
automocSource
;
// Check for write errors
if
(
!
outfile
.
good
())
{
success
=
false
;
std
::
ostringstream
err
;
err
<<
"AutoMoc: error writing "
<<
this
->
MocCppFilenameAbs
<<
"
\n
"
;
this
->
LogError
(
err
.
str
());
}
}
}
}
else
if
(
mocCompFileGenerated
)
{
// Only touch moc_compilation.cpp
if
(
this
->
Verbose
)
{
this
->
LogInfo
(
"Touching MOC compilation "
+
this
->
MocCppFilenameRel
+
"
\n
"
);
}
cmSystemTools
::
Touch
(
this
->
MocCppFilenameAbs
,
false
);
}
return
success
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment