From 86469c2e7c2b07833aa8089049be0a3b5102f028 Mon Sep 17 00:00:00 2001 From: Mark Piper Date: Mon, 11 Mar 2024 20:56:38 -0600 Subject: [PATCH] Test for existence of bmif.pc on Windows --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e2644d7..7361d38 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -110,4 +110,4 @@ jobs: if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\lib\libbmif_win.dll.a ) ){ exit 1 } if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\bin\libbmif_win.dll ) ){ exit 1 } if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\include\bmif_${{ env.BMI_VERSION }}.mod ) ){ exit 1 } - if ( -not ( pkg-config --exists --print-errors bmif ) ){ exit 1 } + if ( -not ( Test-Path -Path ${{ env.LIBRARY_PREFIX }}\lib\pkgconfig\bmif.pc ) ){ exit 1 }