diff --git a/doxy_ege.py b/doxy_ege.py index 2585ed7..6caae0b 100644 --- a/doxy_ege.py +++ b/doxy_ege.py @@ -29,7 +29,7 @@ def create(target, module_name): 'debug.hpp', ]) my_module.add_file_patterns([ - '*.h', + '*.hpp', '*.md', ]) diff --git a/ege/CollisionShapeCreator.cpp b/ege/CollisionShapeCreator.cpp index 9607f83..41176f4 100644 --- a/ege/CollisionShapeCreator.cpp +++ b/ege/CollisionShapeCreator.cpp @@ -7,7 +7,7 @@ #include #include -#include +#include #include #include #include diff --git a/ege/resource/tools/icoSphere.cpp b/ege/resource/tools/icoSphere.cpp index ed2bc80..7b1e29c 100644 --- a/ege/resource/tools/icoSphere.cpp +++ b/ege/resource/tools/icoSphere.cpp @@ -6,7 +6,7 @@ #include #include -#include +#include // return index of point in the middle of p1 and p2 static int32_t getMiddlePoint(std::vector& _listVertex, int32_t _p1, int32_t _p2) { diff --git a/ege/widget/Scene.cpp b/ege/widget/Scene.cpp index 5c89397..957727b 100644 --- a/ege/widget/Scene.cpp +++ b/ege/widget/Scene.cpp @@ -7,7 +7,7 @@ #include #include -#include +#include #include #include #include diff --git a/monk_ege.py b/monk_ege.py deleted file mode 100644 index 9451b42..0000000 --- a/monk_ege.py +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/python -import monkModule as module -import monkTools as tools - -def get_desc(): - return "EGE : Ewol Game engine (based on bullet lib)" - -def create(): - # module name is 'edn' and type binary. - myModule = module.Module(__file__, 'ege', 'LIBRARY') - # enable doculentation : - myModule.set_website("http://heeroyui.github.io/ege/") - myModule.set_website_sources("http://github.com/heeroyui/ege/") - myModule.set_path(tools.get_current_path(__file__) + "/ege/") - # add the currrent module at the - return myModule -