-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
268 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
//@C Copyright Notice | ||
//@C ================ | ||
//@C This file is part of CPSW. It is subject to the license terms in the LICENSE.txt | ||
//@C file found in the top-level directory of this distribution and at | ||
//@C https://confluence.slac.stanford.edu/display/ppareg/LICENSE.html. | ||
//@C | ||
//@C No part of CPSW, including this file, may be copied, modified, propagated, or | ||
//@C distributed except according to the terms contained in the LICENSE.txt file. | ||
|
||
#ifndef _CPSW_API_VERSION_H_ | ||
#define _CPSW_API_VERSION_H_ | ||
|
||
#define CPSW_API_VERSION ${CPSW_API_VERSION} | ||
|
||
#endif // _CPSW_API_VERSION_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
//@C Copyright Notice | ||
//@C ================ | ||
//@C This file is part of CPSW. It is subject to the license terms in the LICENSE.txt | ||
//@C file found in the top-level directory of this distribution and at | ||
//@C https://confluence.slac.stanford.edu/display/ppareg/LICENSE.html. | ||
//@C | ||
//@C No part of CPSW, including this file, may be copied, modified, propagated, or | ||
//@C distributed except according to the terms contained in the LICENSE.txt file. | ||
|
||
#ifndef CPSW_GIT_VERSION_STRING_H | ||
#define CPSW_GIT_VERSION_STRING_H | ||
|
||
#define CPSW_GIT_VERSION_STRING ${CPSW_GIT_VERSION_STRING} | ||
#define CPSW_MAJOR_VERSION ${CPSW_MAJOR_VERSION} | ||
#define CPSW_MINOR_VERSION ${CPSW_MINOR_VERSION} | ||
#define CPSW_REVISION ${CPSW_REVISION} | ||
#define CPSW_DELTA_COMMIT ${CPSW_DELTA_COMMIT} | ||
|
||
#endif |