[DEV] add monk documentation

This commit is contained in:
Edouard DUPIN 2013-12-22 19:05:43 +01:00
parent 08e35f60d7
commit 25b0914786
9 changed files with 27 additions and 11 deletions

3
.gitmodules vendored
View File

@ -47,3 +47,6 @@
[submodule "external/ege"]
path = external/ege
url = https://github.com/HeeroYui/ege.git
[submodule "monk"]
path = monk
url = https://github.com/HeeroYui/monk.git

2
external/ege vendored

@ -1 +1 @@
Subproject commit 58596f179adbc3c0362f7cd802028ced2f5836aa
Subproject commit 015e748d5f624cc0de6c61b87e9b17ede7478a9a

2
external/ejson vendored

@ -1 +1 @@
Subproject commit acf2ff56d646ae2c08bc2a14bb975bc9b0ec3a51
Subproject commit a94d26ba5f824bac1905b50701255e5b8da44275

2
external/esvg vendored

@ -1 +1 @@
Subproject commit b8b4ea9a46f1d6dbdffa0f9e128c99254c78a46a
Subproject commit ac506182726f44783d8035d74b21895dcd048c53

2
external/etk vendored

@ -1 +1 @@
Subproject commit 91198bd19564c6aa44f81c27d8fc380b65eedd92
Subproject commit c1ab11e532cae919470637ac4355f0fb099741e4

2
external/exml vendored

@ -1 +1 @@
Subproject commit cf596edcd516cf659c9a68e614f335ee9eed1ed3
Subproject commit 5f2ae21798cd2967e649dc3520ea667408ad48c6

1
monk Submodule

@ -0,0 +1 @@
Subproject commit b6c956edef5f1c8615780d1e183a81dae2427eac

View File

@ -10,12 +10,7 @@ def Create(target):
# module name is 'edn' and type binary.
myModule = lutinModule.module(__file__, 'ewol', 'LIBRARY')
# enable doculentation :
myModule.doc_enable()
myModule.documentation.set_website("http://HeeroYui.github.io/ewol/")
myModule.documentation.set_path(lutinTools.GetCurrentPath(__file__) + "/ewol/")
myModule.documentation.set_path_general_doc(lutinTools.GetCurrentPath(__file__) + "/../doc/")
myModule.documentation.set_external_link(['etk', 'freetype', 'exml', 'ejson', 'egami', 'date'])
# add extra compilation flags :
#myModule.add_extra_compile_flags()
# add the file to compile:

17
sources/monk_ewol.py Executable file
View File

@ -0,0 +1,17 @@
#!/usr/bin/python
import monkModule
import monkTools as tools
def create():
# module name is 'edn' and type binary.
myModule = monkModule.Module(__file__, 'ewol', 'LIBRARY')
# enable doculentation :
myModule.set_website("http://heeroyui.github.io/ewol/")
myModule.set_path(tools.get_current_path(__file__) + "/ewol/")
myModule.set_path_general_doc(tools.get_current_path(__file__) + "/../doc/")
# add the currrent module at the
return myModule
def get_desc():
return "EWOL main node"