[DEV] add missing dependency with math (m) lib

This commit is contained in:
Edouard DUPIN 2016-08-07 22:45:27 +02:00
parent 7b2692df89
commit 873c0cc057

View File

@ -27,6 +27,10 @@ def create(target, module_name):
'edtaa3/edtaa3func.h'
])
my_module.compile_version("C", 1999)
my_module.add_module_depend([
'c',
'm'
])
my_module.add_path(tools.get_current_path(__file__))
return my_module