3 Commits
0.2.0 ... 0.3.0

Author SHA1 Message Date
2669cd6854 [RELEASE] create release 0.3.0 2016-09-12 21:06:37 +02:00
aa8a3333fe [DEV] update to future lutin 2.0 2016-09-12 21:07:12 +02:00
44f5b8ab5f [DEV] update dev tag version 2016-08-30 22:54:08 +02:00
6 changed files with 13 additions and 11 deletions

1
authors.txt Normal file
View File

@@ -0,0 +1 @@
MR Edouard DUPIN <yui.heero@gmail.com>

View File

@@ -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([

View File

@@ -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

View File

@@ -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

View File

@@ -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
View File

@@ -0,0 +1 @@
0.3.0