Skip to content

Commit

Permalink
More changes for YAML
Browse files Browse the repository at this point in the history
  • Loading branch information
walbourn committed Sep 4, 2024
1 parent 59e819c commit 7c084c3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,7 @@ jobs:
echo "::error Unknown architecture/build-type triplet mapping"
}
- if: ${{ !contains(matrix.build_type, 'arm64ec') }}
uses: lukka/run-vcpkg@v11
- uses: lukka/run-vcpkg@v11
with:
runVcpkgInstall: true
vcpkgJsonGlob: '**/build/vcpkg.json'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wsl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ jobs:
- name: 'Build'
working-directory: ${{ github.workspace }}
run: cmake --build out\build\${{ matrix.build_type }}
run: cmake --build out/build/${{ matrix.build_type }}
18 changes: 13 additions & 5 deletions build/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,17 @@
"dependencies": [
"directxmath",
"directx-headers",
"openexr",
"libpng",
"libjpeg-turbo"
{
"name": "openexr",
"platform": "linux | (windows & !arm64ec)"
},
{
"name": "libpng",
"platform": "linux | (windows & !arm64ec)"
},
{
"name": "libjpeg-turbo",
"platform": "linux | (windows & !arm64ec)"
}
]
}

}

0 comments on commit 7c084c3

Please sign in to comment.