mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-17 00:28:17 +08:00
9 lines
217 B
CMake
9 lines
217 B
CMake
|
cmake_minimum_required(VERSION 3.10)
|
||
|
|
||
|
project(vcpkg-ci-openblas C)
|
||
|
|
||
|
find_package(OpenBLAS CONFIG REQUIRED)
|
||
|
|
||
|
add_executable(fortran-interface main.c)
|
||
|
target_link_libraries(fortran-interface PRIVATE OpenBLAS::OpenBLAS)
|