Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
KWSys
Manage
Activity
Members
Labels
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
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
Shannon Booth
KWSys
Commits
2a6c298f
Commit
2a6c298f
authored
17 years ago
by
Brad King
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Created better names and a more convenient set of version date stamp macros.
parent
57f5b6ba
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
DateStamp.h.in
+26
-26
26 additions, 26 deletions
DateStamp.h.in
kwsysDateStamp.py
+3
-3
3 additions, 3 deletions
kwsysDateStamp.py
with
29 additions
and
29 deletions
DateStamp.h.in
+
26
−
26
View file @
2a6c298f
...
...
@@ -14,31 +14,31 @@
#ifndef @KWSYS_NAMESPACE@_DateStamp_h
#define @KWSYS_NAMESPACE@_DateStamp_h
/**
* Version date year component. The format is CCYY.
*/
#define @KWSYS_NAMESPACE@_VERSION_DATE_YEAR @KWSYS_VERSION_DATE_YEAR@
/**
* Version date
month component
. The format is
MM.
*/
#define @KWSYS_NAMESPACE@_VERSION_DATE_MONTH @KWSYS_VERSION_DATE_MONTH@
/**
* Version date day component. The format is DD.
*/
#define @KWSYS_NAMESPACE@_
VERSION_DATE_DAY
@KWSYS_
VERSION_DATE_DAY@
/**
* Version date accessible from preprocessor.
* This is an integer in the format CCYYMMDD.
*/
#define @KWSYS_NAMESPACE@_
VERSION_DATE_FULL @KWSYS_VERSION_DATE_YEAR@@KWSYS_VERSION_DATE_MONTH@@KWSYS_VERSION_DATE
_DAY@
/**
* Version date as a string literal.
* The format is "CCYY-MM-DD".
*/
#define @KWSYS_NAMESPACE@_
VERSION_DATE_STRING "@KWSYS_VERSION_DATE_YEAR@-@KWSYS_VERSION_DATE
_MONTH@-@KWSYS_
VERSION_DATE
_DAY@"
/**
Version date integer year. The format is CCYY. */
#define @KWSYS_NAMESPACE@_DATE_STAMP_YEAR @KWSYS_DATE_STAMP_YEAR@
/** Version date integer month. The format is MM. */
#define @KWSYS_NAMESPACE@_DATE_STAMP_MONTH @KWSYS_DATE_STAMP_MONTH@
/*
* Version date
integer day
. The format is
DD. */
#define @KWSYS_NAMESPACE@_DATE_STAMP_DAY @KWSYS_DATE_STAMP_DAY@
/** Version date full integer. The format is CCYYMMDD. */
#define @KWSYS_NAMESPACE@_DATE_STAMP_FULL @KWSYS_DATE_STAMP_YEAR@@KWSYS_DATE_STAMP_MONTH@@KWSYS_DATE_STAMP_DAY@
/** Version date string year. The format is "CCYY".
*/
#define @KWSYS_NAMESPACE@_
DATE_STAMP_STRING_YEAR
"
@KWSYS_
DATE_STAMP_YEAR@"
/**
Version date string month. The format is "MM". */
#define @KWSYS_NAMESPACE@_DATE_STAMP_STRING_MONTH "@KWSYS_DATE_STAMP_MONTH@"
/** Version date string day. The format is "DD".
*/
#define @KWSYS_NAMESPACE@_
DATE_STAMP_STRING_DAY "@KWSYS_DATE_STAMP
_DAY@
"
/**
Version date full string. The format is "CCYYMMDD". */
#define @KWSYS_NAMESPACE@_DATE_STAMP_STRING_FULL "@KWSYS_DATE_STAMP_YEAR@@KWSYS_DATE_STAMP_MONTH@@KWSYS_DATE_STAMP_DAY@"
/** Version date formatted string. The format is "CCYY-MM-DD".
*/
#define @KWSYS_NAMESPACE@_
DATE_STAMP_STRING "@KWSYS_DATE_STAMP_YEAR@-@KWSYS_DATE_STAMP
_MONTH@-@KWSYS_
DATE_STAMP
_DAY@"
#endif
This diff is collapsed.
Click to expand it.
kwsysDateStamp.py
+
3
−
3
View file @
2a6c298f
...
...
@@ -20,13 +20,13 @@ ct = time.localtime()
fout
.
write
(
"""
# Do not edit! Generated by kwsysDateStamp.py
# KWSys version date year component. Format is CCYY.
SET(KWSYS_
VERSION_DATE
_YEAR %04u)
SET(KWSYS_
DATE_STAMP
_YEAR %04u)
# KWSys version date month component. Format is MM.
SET(KWSYS_
VERSION_DATE
_MONTH %02u)
SET(KWSYS_
DATE_STAMP
_MONTH %02u)
# KWSys version date day component. Format is DD.
SET(KWSYS_
VERSION_DATE
_DAY %02u)
SET(KWSYS_
DATE_STAMP
_DAY %02u)
"""
%
(
ct
.
tm_year
,
ct
.
tm_mon
,
ct
.
tm_mday
))
fout
.
close
()
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