2016-03-30 21:40:01 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
import os
|
|
|
|
import doxy.module as module
|
|
|
|
import doxy.debug as debug
|
|
|
|
import doxy.tools as tools
|
|
|
|
|
|
|
|
def create(target, module_name):
|
|
|
|
my_module = module.Module(__file__, module_name)
|
2016-09-12 21:06:37 +02:00
|
|
|
my_module.set_version("version.txt")
|
2016-03-30 21:40:01 +02:00
|
|
|
my_module.set_title("Gale: Graphic Abstraction Layer for Ewol")
|
|
|
|
my_module.set_website("http://atria-soft.github.io/" + module_name)
|
|
|
|
my_module.set_website_sources("http://github.com/atria-soft/" + module_name)
|
2016-04-08 21:04:50 +02:00
|
|
|
my_module.add_path([
|
|
|
|
module_name,
|
|
|
|
"doc"
|
|
|
|
])
|
|
|
|
my_module.add_sample_path([
|
|
|
|
"sample"
|
|
|
|
])
|
2016-09-08 21:35:02 +02:00
|
|
|
my_module.add_depend([
|
2016-03-30 21:40:01 +02:00
|
|
|
'elog',
|
|
|
|
'etk'
|
|
|
|
])
|
2016-04-08 21:04:50 +02:00
|
|
|
my_module.add_exclude_symbols([
|
|
|
|
'*operator<<*',
|
|
|
|
])
|
|
|
|
my_module.add_exclude_file([
|
2016-10-02 16:10:25 +02:00
|
|
|
'debug.hpp',
|
2016-04-08 21:04:50 +02:00
|
|
|
])
|
|
|
|
my_module.add_file_patterns([
|
2016-10-02 16:10:25 +02:00
|
|
|
'*.hp',
|
2016-04-08 21:04:50 +02:00
|
|
|
'*.md',
|
|
|
|
])
|
2016-03-30 21:40:01 +02:00
|
|
|
|
|
|
|
return my_module
|