[DEV] update to future lutin 2.0
This commit is contained in:
parent
2b813a3804
commit
24d71b7b46
@ -11,7 +11,7 @@ def create(target, module_name):
|
|||||||
my_module.set_website("http://atria-soft.github.io/" + module_name)
|
my_module.set_website("http://atria-soft.github.io/" + module_name)
|
||||||
my_module.set_website_sources("http://github.com/atria-soft/" + module_name)
|
my_module.set_website_sources("http://github.com/atria-soft/" + module_name)
|
||||||
my_module.set_path(os.path.join(tools.get_current_path(__file__), module_name))
|
my_module.set_path(os.path.join(tools.get_current_path(__file__), module_name))
|
||||||
my_module.add_module_depend([
|
my_module.add_depend([
|
||||||
'esvg',
|
'esvg',
|
||||||
'etk'
|
'etk'
|
||||||
])
|
])
|
||||||
|
@ -26,7 +26,7 @@ def get_maintainer():
|
|||||||
|
|
||||||
def create(target, module_name):
|
def create(target, module_name):
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
my_module = module.Module(__file__, module_name, get_type())
|
||||||
my_module.add_module_depend(['egami', 'test-debug'])
|
my_module.add_depend(['egami', 'test-debug'])
|
||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
'sample/main.cpp',
|
'sample/main.cpp',
|
||||||
'sample/read.cpp',
|
'sample/read.cpp',
|
||||||
|
@ -26,7 +26,7 @@ def get_maintainer():
|
|||||||
|
|
||||||
def create(target, module_name):
|
def create(target, module_name):
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
my_module = module.Module(__file__, module_name, get_type())
|
||||||
my_module.add_module_depend(['egami', 'gtest', 'test-debug'])
|
my_module.add_depend(['egami', 'gtest', 'test-debug'])
|
||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
'test/main.cpp'
|
'test/main.cpp'
|
||||||
])
|
])
|
||||||
|
@ -26,7 +26,7 @@ def get_version():
|
|||||||
|
|
||||||
def create(target, module_name):
|
def create(target, module_name):
|
||||||
my_module = module.Module(__file__, module_name, get_type())
|
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([
|
my_module.add_src_file([
|
||||||
'egami/Image.cpp',
|
'egami/Image.cpp',
|
||||||
'egami/ImageMono.cpp',
|
'egami/ImageMono.cpp',
|
||||||
@ -42,8 +42,8 @@ def create(target, module_name):
|
|||||||
'egami/ImageMono.h',
|
'egami/ImageMono.h',
|
||||||
'egami/egami.h',
|
'egami/egami.h',
|
||||||
])
|
])
|
||||||
my_module.add_module_depend(['etk', 'png', 'esvg', 'edtaa3'])
|
my_module.add_depend(['etk', 'png', 'esvg', 'edtaa3'])
|
||||||
my_module.compile_flags('c++', [
|
my_module.add_flag('c++', [
|
||||||
'-Wno-write-strings',
|
'-Wno-write-strings',
|
||||||
'-Wall'])
|
'-Wall'])
|
||||||
my_module.add_path(tools.get_current_path(__file__))
|
my_module.add_path(tools.get_current_path(__file__))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user