I have problems to include the vDSP-Framework. I thought it is just that steps todo:
#include <Accelerate/Accelerate.h>
void test()
{
float a[1024], b[1024], c[1024];
vDSP_vmul( a, 1, b, 1, c, 1, 1024 );
}
but if i try to build,I get an error:
"_vmul", referenced from:
I think i didnt link the framework. but how can I do that?