[DEV] update to future lutin 2.0
This commit is contained in:
parent
fd5fdc45f1
commit
a5c4b16bbf
@ -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'
|
||||
|
@ -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'
|
||||
])
|
||||
|
@ -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'
|
||||
])
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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'
|
||||
|
Loading…
Reference in New Issue
Block a user