# HG changeset patch # User Andre Heinecke # Date 1430929106 -7200 # Node ID ae8e859de68ee2e3c6951228e3f82d628a5d1b7a # Parent 89997d853bf6b916df76e779a4b33d06344481bc Clarify some comments about constants diff -r 89997d853bf6 -r ae8e859de68e src/constants.h --- a/src/constants.h Wed May 06 18:10:14 2015 +0200 +++ b/src/constants.h Wed May 06 18:18:26 2015 +0200 @@ -13,14 +13,20 @@ * This file can be included to pull in common * definitions in the application. */ -/**@def The version of the software package. */ +/**@def The version of the software package. + * + * Usually defined as Build parameter. + */ #ifndef VERSION #define VERSION "0.0.1" #endif -/**@def The user visible application name. */ +/**@def The user visible application name. + * + * Usually defined as Build parameter. + **/ #ifndef APPNAME -#define APPNAME "undefined" +#define APPNAME "unknown" #endif /**@def Short command line description. */