ewol/sources/monk_ewol.py

19 lines
596 B
Python
Raw Normal View History

2013-12-22 19:05:43 +01:00
#!/usr/bin/python
import monkModule
import monkTools as tools
2013-12-23 22:38:46 +01:00
def get_desc():
return "EWOL main library (Edn Widget on OpenGl Layer)"
2013-12-22 19:05:43 +01:00
def create():
2013-12-23 22:38:46 +01:00
# module name is 'ewol' and type binary.
2013-12-22 19:05:43 +01:00
myModule = monkModule.Module(__file__, 'ewol', 'LIBRARY')
# enable doculentation :
myModule.set_website("http://heeroyui.github.io/ewol/")
2013-12-28 16:08:13 +01:00
myModule.set_website_sources("http://github.com/heeroyui/ewol/")
2013-12-22 19:05:43 +01:00
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