mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 21:39:07 +08:00
0bc3f04da6
Co-authored-by: Alexander Neumann <you@example.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
7 lines
184 B
CMake
7 lines
184 B
CMake
cmake_minimum_required(VERSION 3.17)
|
|
|
|
project(Find_BLAS_external)
|
|
find_package(BLAS REQUIRED)
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_check_modules(BLAS_PC REQUIRED IMPORTED_TARGET blas)
|