build in docker for all debian based distros

This commit is contained in:
Marc Wäckerlin
2015-12-08 13:14:19 +00:00
parent cf6fdcb709
commit dc9c339b06
10 changed files with 341 additions and 55 deletions

View File

@@ -30,10 +30,10 @@ namespace NAMESPACE {
return README;
}
std::string logo() {
return PROJECT_LOGO;
return PACKAGE_LOGO;
}
std::string icon() {
return PROJECT_ICON;
return PACKAGE_ICON;
}
const std::string WHAT("#(@) " PACKAGE_STRING);
const std::string IDENT("$Id: " PACKAGE_STRING);

View File

@@ -1,17 +0,0 @@
/*! @file
@id $Id$
*/
// 1 2 3 4 5 6 7 8
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
#include <string>
namespace mrw {
std::string version() {
return "@PACKAGE_NAME@-@PACKAGE_VERSION@";
}
const std::string WHAT("#(@) @PACKAGE_NAME@-@PACKAGE_VERSION@");
const std::string IDENT("$Id: @PACKAGE_NAME@-@PACKAGE_VERSION@ $");
}