2013-12-22 19:05:43 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
import monkModule
|
|
|
|
import monkTools as tools
|
2016-03-23 21:44:32 +01:00
|
|
|
import os
|
2013-12-22 19:05:43 +01:00
|
|
|
|
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 :
|
2016-03-23 21:44:32 +01:00
|
|
|
myModule.set_website("http://atria-soft.github.io/ewol/")
|
|
|
|
myModule.set_website_sources("http://github.com/atria-soft/ewol/")
|
|
|
|
myModule.set_path(os.path.join(tools.get_current_path(__file__), "ewol"))
|
|
|
|
myModule.set_path_general_doc(os.path.join(tools.get_current_path(__file__), "doc"))
|
2013-12-22 19:05:43 +01:00
|
|
|
# add the currrent module at the
|
|
|
|
return myModule
|
|
|
|
|