Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
2669cd6854 | |||
aa8a3333fe | |||
44f5b8ab5f |
1
authors.txt
Normal file
1
authors.txt
Normal file
@@ -0,0 +1 @@
|
||||
MR Edouard DUPIN <yui.heero@gmail.com>
|
@@ -6,7 +6,7 @@ import doxy.tools as tools
|
||||
|
||||
def create(target, module_name):
|
||||
my_module = module.Module(__file__, module_name)
|
||||
my_module.set_version([0,1,"dev"])
|
||||
my_module.set_version("version.txt")
|
||||
my_module.set_title("eproperty: Ewol property interface")
|
||||
my_module.set_website("http://atria-soft.github.io/" + module_name)
|
||||
my_module.set_website_sources("http://github.com/atria-soft/" + module_name)
|
||||
@@ -14,7 +14,7 @@ def create(target, module_name):
|
||||
module_name,
|
||||
"doc"
|
||||
])
|
||||
my_module.add_module_depend([
|
||||
my_module.add_depend([
|
||||
'etk'
|
||||
])
|
||||
my_module.add_sample_path([
|
||||
|
@@ -22,13 +22,13 @@ def get_compagny_name():
|
||||
return "atria-soft"
|
||||
|
||||
def get_maintainer():
|
||||
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
||||
return "authors.txt"
|
||||
|
||||
def create(target, module_name):
|
||||
my_module = module.Module(__file__, module_name, get_type())
|
||||
my_module.add_src_file([
|
||||
'sample/sampleAll.cpp'
|
||||
])
|
||||
my_module.add_module_depend(['eproperty', 'test-debug'])
|
||||
my_module.add_depend(['eproperty', 'test-debug'])
|
||||
return my_module
|
||||
|
||||
|
@@ -23,7 +23,7 @@ def get_compagny_name():
|
||||
return "atria-soft"
|
||||
|
||||
def get_maintainer():
|
||||
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
||||
return "authors.txt"
|
||||
|
||||
def create(target, module_name):
|
||||
my_module = module.Module(__file__, module_name, get_type())
|
||||
@@ -34,6 +34,6 @@ def create(target, module_name):
|
||||
'test/test_range.cpp',
|
||||
'test/test_value.cpp'
|
||||
])
|
||||
my_module.add_module_depend(['eproperty', 'gtest', 'test-debug'])
|
||||
my_module.add_depend(['eproperty', 'gtest', 'test-debug'])
|
||||
return my_module
|
||||
|
||||
|
@@ -21,14 +21,14 @@ def get_compagny_name():
|
||||
return "atria-soft"
|
||||
|
||||
def get_maintainer():
|
||||
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
||||
return "authors.txt"
|
||||
|
||||
def get_version():
|
||||
return [0,2,0]
|
||||
return "version.txt"
|
||||
|
||||
def create(target, module_name):
|
||||
my_module = module.Module(__file__, module_name, get_type())
|
||||
my_module.add_extra_compile_flags()
|
||||
my_module.add_extra_flags()
|
||||
my_module.add_src_file([
|
||||
'eproperty/debug.cpp',
|
||||
'eproperty/Property.cpp',
|
||||
@@ -48,9 +48,9 @@ def create(target, module_name):
|
||||
'eproperty/details/Range.hxx',
|
||||
'eproperty/details/Value.hxx',
|
||||
])
|
||||
my_module.add_module_depend(['etk'])
|
||||
my_module.add_depend(['etk'])
|
||||
my_module.add_path(tools.get_current_path(__file__))
|
||||
my_module.compile_flags('c++', [
|
||||
my_module.add_flag('c++', [
|
||||
"-DEPROPERTY_VERSION=\"\\\"" + tools.version_to_string(get_version()) + "\\\"\""
|
||||
])
|
||||
return my_module
|
||||
|
1
version.txt
Normal file
1
version.txt
Normal file
@@ -0,0 +1 @@
|
||||
0.3.0
|
Reference in New Issue
Block a user