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
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Christophe
CMake
Commits
f6d4fa63
Commit
f6d4fa63
authored
3 years ago
by
Brad King
Browse files
Options
Downloads
Patches
Plain Diff
cmStateDirectory: Comment relative path top directory selection approach
parent
f0ffb1e2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Source/cmStateDirectory.cxx
+6
-0
6 additions, 0 deletions
Source/cmStateDirectory.cxx
with
6 additions
and
0 deletions
Source/cmStateDirectory.cxx
+
6
−
0
View file @
f6d4fa63
...
...
@@ -44,6 +44,9 @@ void cmStateDirectory::ComputeRelativePathTopSource()
std
::
string
result
=
snapshots
.
front
().
GetDirectory
().
GetCurrentSource
();
// Walk up the buildsystem directory tree to find the highest source
// directory that contains the current source directory and the
// intermediate ancestors.
for
(
cmStateSnapshot
const
&
snp
:
cmMakeRange
(
snapshots
).
advance
(
1
))
{
std
::
string
currentSource
=
snp
.
GetDirectory
().
GetCurrentSource
();
if
(
cmSystemTools
::
IsSubDirectory
(
result
,
currentSource
))
{
...
...
@@ -69,6 +72,9 @@ void cmStateDirectory::ComputeRelativePathTopBinary()
std
::
string
result
=
snapshots
.
front
().
GetDirectory
().
GetCurrentBinary
();
// Walk up the buildsystem directory tree to find the highest binary
// directory that contains the current binary directory and the
// intermediate ancestors.
for
(
cmStateSnapshot
const
&
snp
:
cmMakeRange
(
snapshots
).
advance
(
1
))
{
std
::
string
currentBinary
=
snp
.
GetDirectory
().
GetCurrentBinary
();
if
(
cmSystemTools
::
IsSubDirectory
(
result
,
currentBinary
))
{
...
...
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