From ae8598ab35ac9aeed65c53574fcb0d0e6058421a Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Fri, 8 Apr 2016 21:52:27 +0200 Subject: [PATCH] [DEV] update etk and doxy --- doxy_exml.py | 14 +++++++++++++- test/main.cpp | 35 +++++++---------------------------- 2 files changed, 20 insertions(+), 29 deletions(-) diff --git a/doxy_exml.py b/doxy_exml.py index 8a0447d..b2d6d38 100644 --- a/doxy_exml.py +++ b/doxy_exml.py @@ -10,9 +10,21 @@ def create(target, module_name): my_module.set_title("exml: Ewol XML parser") my_module.set_website("http://atria-soft.github.io/" + module_name) my_module.set_website_sources("http://github.com/atria-soft/" + module_name) - my_module.set_path(os.path.join(tools.get_current_path(__file__), module_name)) + my_module.add_path([ + module_name, + ]) my_module.add_module_depend([ 'etk' ]) + my_module.add_exclude_symbols([ + '*operator<<*', + ]) + my_module.add_exclude_file([ + 'debug.h', + ]) + my_module.add_file_patterns([ + '*.h', + '*.md', + ]) return my_module \ No newline at end of file diff --git a/test/main.cpp b/test/main.cpp index 02e0615..8b4ff67 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -10,6 +10,7 @@ #include #include #include +#include //#include "exmlTestDocument.h" #include "exmlTestElement.h" @@ -24,39 +25,17 @@ int main(int argc, const char *argv[]) { // init Google test : ::testing::InitGoogleTest(&argc, const_cast(argv)); // the only one init for etk: - elog::setLevel(elog::logLevelNone); + etk::init(argc, argv); for (int32_t iii=0; iii