diff options
Diffstat (limited to 'vcpkg/scripts/test_ports/vcpkg-ci-openblas/project/CMakeLists.txt')
| -rw-r--r-- | vcpkg/scripts/test_ports/vcpkg-ci-openblas/project/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vcpkg/scripts/test_ports/vcpkg-ci-openblas/project/CMakeLists.txt b/vcpkg/scripts/test_ports/vcpkg-ci-openblas/project/CMakeLists.txt new file mode 100644 index 0000000..4d061e7 --- /dev/null +++ b/vcpkg/scripts/test_ports/vcpkg-ci-openblas/project/CMakeLists.txt @@ -0,0 +1,8 @@ +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) |