File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,6 @@ permissions: read-all
1111jobs :
1212 build-windows-msvc :
1313 runs-on : windows-latest
14- env :
15- PKG_CONFIG : ${{ github.workspace }}/vcpkg/installed/x64-windows/tools/pkgconf/pkgconf.exe
16- PKG_CONFIG_PATH : ${{ github.workspace }}/vcpkg/installed/x64-windows/lib/pkgconfig
1714
1815 steps :
1916 - uses : actions/checkout@v4
3633 python -m pip install --upgrade pip
3734 pip install meson ninja
3835
36+ - name : Setup environment
37+ run : |
38+ echo "PKG_CONFIG=${{ github.workspace }}/vcpkg/installed/x64-windows/tools/pkgconf/pkgconf.exe" >> $env:GITHUB_ENV
39+ echo "PKG_CONFIG_PATH=${{ github.workspace }}/vcpkg/installed/x64-windows/lib/pkgconfig" >> $env:GITHUB_ENV
40+ echo "LIB=${{ github.workspace }}/vcpkg/installed/x64-windows/lib;$env:LIB" >> $env:GITHUB_ENV
41+ echo "INCLUDE=${{ github.workspace }}/vcpkg/installed/x64-windows/include;$env:INCLUDE" >> $env:GITHUB_ENV
42+ shell : pwsh
43+
3944 - name : Setup vcpkg and install pkg-config and gtest
4045 run : |
4146 git clone https://github.com/Microsoft/vcpkg.git
You can’t perform that action at this time.
0 commit comments