[BUILD] update new lutin 0.5.3

This commit is contained in:
2015-05-08 22:47:23 +02:00
parent 386f5ed011
commit 2a467a7a5d
3 changed files with 5 additions and 9 deletions

View File

@@ -58,7 +58,7 @@
</rule> </rule>
<rule name="my function keyword"> <rule name="my function keyword">
<color>systemFunction</color> <color>systemFunction</color>
<regex>\b(new|delete|try|catch|memset|fopen|fread|fwrite|fgets|fclose|printf|(f|s|diag_)printf)\b</regex> <regex>\b(new|delete|try|catch|memset|fopen|fread|fwrite|fgets|fclose|printf|(f|s|diag_)printf|(reinterpret|static|dynamic|const)_cast)\b</regex>
</rule> </rule>
<rule name="my type"> <rule name="my type">
<color>type</color> <color>type</color>

View File

@@ -60,9 +60,7 @@ class MainApplication : public ewol::context::Application {
//()CTagsManager::getInstance(); //()CTagsManager::getInstance();
m_bufferManager = appl::BufferManager::create(); m_bufferManager = appl::BufferManager::create();
m_pluginManager = appl::textPluginManager::create(); m_pluginManager = appl::textPluginManager::create();
appl::highlightManager::init(); appl::highlightManager::init();
// Request load of the user configuration ... // Request load of the user configuration ...
//ewol::userConfig::load(); //ewol::userConfig::load();

10
sources/lutin_edn.py Executable file → Normal file
View File

@@ -1,10 +1,8 @@
#!/usr/bin/python #!/usr/bin/python
import lutinModule as module import lutin.module as module
import lutinTools as tools import lutin.tools as tools
import lutinDebug as debug
import datetime import datetime
def get_desc(): def get_desc():
return "EDN application N'ours editor (Editeur De N'ours)" return "EDN application N'ours editor (Editeur De N'ours)"
@@ -64,7 +62,7 @@ def create(target):
myModule.add_module_depend('ewol') myModule.add_module_depend('ewol')
myModule.compile_flags_CC([ myModule.compile_flags('c++', [
"-DPROJECT_NAME=\"\\\""+myModule.name+"\\\"\"" "-DPROJECT_NAME=\"\\\""+myModule.name+"\\\"\""
]) ])
@@ -100,7 +98,7 @@ def create(target):
tagFile = tools.get_current_path(__file__) + "/tag" tagFile = tools.get_current_path(__file__) + "/tag"
versionID = tools.file_read_data(tagFile) versionID = tools.file_read_data(tagFile)
myModule.compile_flags_CC([ myModule.compile_flags('c', [
"-DAPPL_VERSION=\"\\\"" + versionID + "\\\"\"" "-DAPPL_VERSION=\"\\\"" + versionID + "\\\"\""
]) ])
tagFile = tools.get_current_path(__file__) + "/tagCode" tagFile = tools.get_current_path(__file__) + "/tagCode"