Changeset 1babbd6ba3 in tspsg for src/version.h


Ignore:
Timestamp:
Apr 8, 2010, 11:02:26 PM (14 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
a23f4c292f
Parents:
394216e468
git-author:
Oleksii Serdiuk <contacts@…> (04/08/10 23:02:26)
git-committer:
Oleksii Serdiuk <contacts@…> (06/29/12 19:34:20)
Message:

+ Added Installation Guide.

  • Updated translations.
  • Updated documentaion.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/version.h

    r394216e468 r1babbd6ba3  
    7272 * \brief TSPSG build status
    7373 */
    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
    7985
    8086//! \internal \brief A helper for QUOTE(x).
Note: See TracChangeset for help on using the changeset viewer.