mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 03:34:26 +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)
|