find_package(BLAS) fails to find Arm performance libraries

I have just downloaded and installed latest APL (24.04) on my windows on arm device. I am currently just making some small tests, but cmake fails to find apl. To reproduce, here is my CMakeLists file:

and this is my main.cpp file:

#include <iostream>
#include “armpl.h”

int main() {
std::cout << “Success” << std::endl;
return 0;

}

It fails with this error: – Could NOT find BLAS (missing: BLAS_LIBRARIES)
When I try a similar approach on my windows intel device( I just replace armpl.h with mkl.h and the BLA_VENDOR with Intel10_64lp), it works. Does someone know why this ight be happening ?

0