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
Snippets
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
Mattias Ellert
CMake
Commits
ad594de8
Commit
ad594de8
authored
9 years ago
by
Brad King
Browse files
Options
Downloads
Patches
Plain Diff
cmSystemTools: Add VersionCompareEqual helper
Wrap a call to VersionCompare with OP_EQUAL.
parent
c173e37f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Source/cmSystemTools.cxx
+8
-0
8 additions, 0 deletions
Source/cmSystemTools.cxx
Source/cmSystemTools.h
+2
-0
2 additions, 0 deletions
Source/cmSystemTools.h
with
10 additions
and
0 deletions
Source/cmSystemTools.cxx
+
8
−
0
View file @
ad594de8
...
...
@@ -2776,6 +2776,14 @@ bool cmSystemTools::VersionCompare(cmSystemTools::CompareOp op,
return
op
==
cmSystemTools
::
OP_EQUAL
;
}
//----------------------------------------------------------------------------
bool
cmSystemTools
::
VersionCompareEqual
(
std
::
string
const
&
lhs
,
std
::
string
const
&
rhs
)
{
return
cmSystemTools
::
VersionCompare
(
cmSystemTools
::
OP_EQUAL
,
lhs
.
c_str
(),
rhs
.
c_str
());
}
//----------------------------------------------------------------------------
bool
cmSystemTools
::
VersionCompareGreater
(
std
::
string
const
&
lhs
,
std
::
string
const
&
rhs
)
...
...
This diff is collapsed.
Click to expand it.
Source/cmSystemTools.h
+
2
−
0
View file @
ad594de8
...
...
@@ -294,6 +294,8 @@ public:
* Compare versions
*/
static
bool
VersionCompare
(
CompareOp
op
,
const
char
*
lhs
,
const
char
*
rhs
);
static
bool
VersionCompareEqual
(
std
::
string
const
&
lhs
,
std
::
string
const
&
rhs
);
static
bool
VersionCompareGreater
(
std
::
string
const
&
lhs
,
std
::
string
const
&
rhs
);
...
...
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