Changeset 71 in tspsg-svn for trunk/src/version.h
- Timestamp:
- Dec 7, 2009, 5:06:44 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/version.h
r67 r71 57 57 //! Minor version of current TSPSG build 58 58 #define BUILD_VERSION_MINOR 1 59 //! TSPSG release number 59 /*! 60 * \brief TSPSG release number 61 * 62 * Release number meanings: 63 * - 1 -- 3: <b>alpha</b> 1 to 3 64 * - 4 -- 7: <b>beta</b> 1 to 4 65 * - 8 -- 10: <b>rc</b> 1 to 3 66 * - 11 -- x: <b>release</b> 1 to x-10 67 */ 60 68 #define BUILD_RELEASE 2 61 69 … … 63 71 * \brief Current TSPSG build number 64 72 * 65 * This will only change on releases and will be the same as revision number. 66 * 67 * Build number meanings: 68 * - 1 -- 3: <b>alpha</b> 1 to 3 69 * - 4 -- 7: <b>beta</b> 1 to 4 70 * - 8 -- 10: <b>rc</b> 1 to 3 71 * - 11 -- x: <b>release</b> 1 to x-10 73 * This will only change on releases and will be the same as revision number. 72 74 */ 73 75 #define BUILD_NUMBER 65535 … … 77 79 * \brief TSPSG build status 78 80 * 79 * Determined based on BUILD_NUMBER .81 * Determined based on BUILD_NUMBER and BUILD_RELEASE. 80 82 */ 81 83 #if BUILD_NUMBER == 65535 82 84 #define BUILD_STATUS (dev build) 83 #elif BUILD_RELEASE < 4 84 #define BUILD_STATUS (alpha) 85 #elif BUILD_RELEASE < 8 86 #define BUILD_STATUS (beta) 87 #elif BUILD_RELEASE < 11 88 #define BUILD_STATUS (rc) 85 #else 86 #if BUILD_RELEASE < 4 87 #define BUILD_STATUS (alpha) 88 #elif BUILD_RELEASE < 8 89 #define BUILD_STATUS (beta) 90 #elif BUILD_RELEASE < 11 91 #define BUILD_STATUS (rc) 92 #else 93 #define BUILD_STATUS 94 #endif 89 95 #endif // BUILD_NUMBER == 65535 90 96
Note: See TracChangeset
for help on using the changeset viewer.