[DEBUG] tag creation error correction

This commit is contained in:
Edouard DUPIN 2013-11-28 22:23:42 +01:00
parent bb0003170b
commit c86a5d89a3
3 changed files with 7 additions and 6 deletions

View File

@ -59,7 +59,7 @@ etk::CCout& operator <<(etk::CCout& _os, const std::u32string& _obj) {
* @brief main application function initialisation * @brief main application function initialisation
*/ */
bool APP_Init(ewol::eContext& _context) { bool APP_Init(ewol::eContext& _context) {
APPL_INFO(" == > init APPL (START) [" << ewol::getBoardType() << "] (" << ewol::getCompilationMode() << ")"); APPL_INFO(" == > init APPL v" << APPL_VERSION << " (START) [" << ewol::getBoardType() << "] (" << ewol::getCompilationMode() << ")");
etk::theme::setName("COLOR", "colorWhite/"); etk::theme::setName("COLOR", "colorWhite/");

View File

@ -17,5 +17,5 @@ fi
echo -n $tag > tag echo -n $tag > tag
git commit -a -m "create a new release" git commit -a -m "Update version tag : $tag"
git tag $tag git tag $tag

View File

@ -59,7 +59,8 @@ def Create(target):
myModule.AddModuleDepend('ewol') myModule.AddModuleDepend('ewol')
myModule.CompileFlags_CC([ myModule.CompileFlags_CC([
"-DPROJECT_NAME=\"\\\""+myModule.name+"\\\"\""]) "-DPROJECT_NAME=\"\\\""+myModule.name+"\\\"\""
])
myModule.CopyFile('../data/icon.png','icon.png') myModule.CopyFile('../data/icon.png','icon.png')
@ -88,11 +89,11 @@ def Create(target):
myModule.CopyFile("../data/Font/freefont/FreeSerif.ttf","fonts/FreeSerif.ttf") myModule.CopyFile("../data/Font/freefont/FreeSerif.ttf","fonts/FreeSerif.ttf")
myModule.CopyFolder("../data/Font/freefont/FreeMon*.ttf","fonts/") myModule.CopyFolder("../data/Font/freefont/FreeMon*.ttf","fonts/")
tagFile = lutinTools.GetCurrentPath(__file__) + "/tag" tagFile = lutinTools.GetCurrentPath(__file__) + "/tag"
versionID = lutinTools.FileReadData(tagFile) versionID = lutinTools.FileReadData(tagFile)
myModule.CompileFlags_CC([
debug.info(" edn versionId = '" + versionID + "'") "-DAPPL_VERSION=\"\\\"" + versionID + "\\\"\""
])
# set the package properties : # set the package properties :
myModule.pkgSet("VERSION", versionID) myModule.pkgSet("VERSION", versionID)