mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-07 18:27:54 +08:00
11 lines
382 B
CMake
11 lines
382 B
CMake
|
# BLA_VENDOR and BLA_STATIC are documented at:
|
||
|
# * https://cmake.org/cmake/help/latest/module/FindBLAS.html
|
||
|
# * https://cmake.org/cmake/help/latest/module/FindLAPACK.html
|
||
|
|
||
|
_find_package(BLAS) # Find BLAS before setting BLA_VENDOR (Will set/unset BLA_VENDOR itself)
|
||
|
set(BLA_VENDOR @BLA_VENDOR@)
|
||
|
set(BLA_STATIC @BLA_STATIC@)
|
||
|
_find_package(${ARGS})
|
||
|
unset(BLA_VENDOR)
|
||
|
unset(BLA_STATIC)
|