Skip to content

Commit

Permalink
Merge pull request mavlink#916 from DonLakeFlyer/Version
Browse files Browse the repository at this point in the history
Allow version suffix from command line
  • Loading branch information
LorenzMeier committed Oct 30, 2014
2 parents 24486f1 + caa860c commit a99da28
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/QGCConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@
#define WITH_TEXT_TO_SPEECH 1

#define QGC_APPLICATION_NAME "QGroundControl"
#define QGC_APPLICATION_VERSION "v. 2.0.3 (beta)"
#define QGC_APPLICATION_VERSION_BASE "v2.0.3"

#define QGC_APPLICATION_VERSION_SUFFIX ".234 (Daily Build)"
#ifdef QGC_APPLICATION_VERSION_SUFFIX
#define QGC_APPLICATION_VERSION QGC_APPLICATION_VERSION_BASE QGC_APPLICATION_VERSION_SUFFIX
#else
#define QGC_APPLICATION_VERSION QGC_APPLICATION_VERSION_BASE " (Developer Build)"
#endif

namespace QGC

Expand Down

0 comments on commit a99da28

Please sign in to comment.