Changeset 100 in tspsg-svn for trunk/src/version.h
- Timestamp:
- Apr 8, 2010, 11:02:26 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/version.h
r98 r100 72 72 * \brief TSPSG build status 73 73 */ 74 #if !defined(TSPSG_RELEASE_BUILD) 75 #define BUILD_STATUS (dev build) 76 #elif !defined(BUILD_STATUS) 77 #define BUILD_STATUS (build BUILD_NUMBER) 78 #endif // TSPSG_RELEASE_BUILD 74 #ifdef DEBUG 75 #ifndef BUILD_STATUS 76 #define BUILD_STATUS (debug build BUILD_NUMBER) 77 #endif 78 #else 79 #if !defined(TSPSG_RELEASE_BUILD) 80 #define BUILD_STATUS (dev build) 81 #elif !defined(BUILD_STATUS) 82 #define BUILD_STATUS (build BUILD_NUMBER) 83 #endif // TSPSG_RELEASE_BUILD 84 #endif // DEBUG 79 85 80 86 //! \internal \brief A helper for QUOTE(x).
Note: See TracChangeset
for help on using the changeset viewer.