[DEV] update to future lutin 2.0

This commit is contained in:
Edouard DUPIN 2016-09-08 21:35:02 +02:00
parent fd5fdc45f1
commit a5c4b16bbf
7 changed files with 8 additions and 8 deletions

View File

@ -97,11 +97,11 @@ def create(target, module_name):
'openh264/codec/api/svc/codec_ver.h',
],
destination_path="")
my_module.add_module_depend([
my_module.add_depend([
'cxx'
])
my_module.compile_version("C++", 2003)
my_module.add_module_depend([
my_module.add_depend([
'cxx',
'pthread',
'm'

View File

@ -91,7 +91,7 @@ def create(target, module_name):
],
destination_path="")
my_module.compile_version("C++", 2003)
my_module.add_module_depend([
my_module.add_depend([
'openh264-common',
'openh264-processing'
])

View File

@ -128,7 +128,7 @@ def create(target, module_name):
],
destination_path="")
my_module.compile_version("C++", 2003)
my_module.add_module_depend([
my_module.add_depend([
'openh264-common',
'openh264-processing'
])

View File

@ -77,7 +77,7 @@ def create(target, module_name):
],
destination_path="")
my_module.compile_version("C++", 2003)
my_module.add_module_depend([
my_module.add_depend([
'openh264-common'
])
return my_module

View File

@ -29,5 +29,5 @@ def create(target, module_name):
my_module.add_path(os.path.join(tools.get_current_path(__file__), "openh264", "codec", "console", "dec", "inc"))
my_module.add_path(os.path.join(tools.get_current_path(__file__), "openh264", "codec", "console", "common", "inc"))
my_module.compile_version("c++", 2003)
my_module.add_module_depend('openh264')
my_module.add_depend('openh264')
return my_module

View File

@ -28,5 +28,5 @@ def create(target, module_name):
my_module.add_path(os.path.join(tools.get_current_path(__file__), "openh264", "codec", "console", "enc", "inc"))
my_module.add_path(os.path.join(tools.get_current_path(__file__), "openh264", "codec", "console", "common", "inc"))
my_module.compile_version("c++", 2003)
my_module.add_module_depend('openh264')
my_module.add_depend('openh264')
return my_module

View File

@ -20,7 +20,7 @@ def get_version():
def create(target, module_name):
my_module = module.Module(__file__, module_name, get_type())
my_module.add_module_depend([
my_module.add_depend([
'openh264-encoder',
'openh264-decoder',
'openh264-processing'