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

This commit is contained in:
Edouard DUPIN 2016-08-07 22:48:32 +02:00
parent 8fdb052912
commit f06311184e

View File

@ -78,7 +78,10 @@ def create(target, module_name):
],
destination_path="LinearMath")
# depend on the cxx library (need <new> and somes things ...)
my_module.add_module_depend(['cxx'])
my_module.add_module_depend([
'cxx',
'm'
])
return my_module