mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
+microsoft.com/dxc (#4317)
* Add dxc * tweak building * Add python to build env * Copy items to prefix * create prefix directory first * copy libs * include zlib * don’t error on warning * specific zlib major --------- Co-authored-by: Jacob Heider <jacob@pkgx.dev>
This commit is contained in:
parent
37b564d738
commit
c9ece3165d
1 changed files with 42 additions and 0 deletions
42
projects/microsoft.com/dxc/package.yml
Normal file
42
projects/microsoft.com/dxc/package.yml
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
distributable:
|
||||||
|
url: git+https://github.com/microsoft/DirectXShaderCompiler
|
||||||
|
ref: v{{version}}
|
||||||
|
|
||||||
|
versions:
|
||||||
|
github: microsoft/DirectXShaderCompiler/tags
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
zlib.net: ^1
|
||||||
|
|
||||||
|
build:
|
||||||
|
dependencies:
|
||||||
|
cmake.org: '*'
|
||||||
|
git-scm.org: ^2
|
||||||
|
ninja-build.org: ^1
|
||||||
|
python.org: '>=3.7<3.12'
|
||||||
|
script: |
|
||||||
|
git submodule update --init
|
||||||
|
cmake -B $BUILD_DIR $CMAKE_ARGS
|
||||||
|
ninja -C $BUILD_DIR
|
||||||
|
|
||||||
|
mkdir -p {{prefix}}
|
||||||
|
cp -r $BUILD_DIR/bin {{prefix}}/
|
||||||
|
cp -r $BUILD_DIR/lib {{prefix}}/
|
||||||
|
env:
|
||||||
|
BUILD_DIR: $(mktemp -d)
|
||||||
|
CMAKE_ARGS:
|
||||||
|
- -GNinja
|
||||||
|
- -C./cmake/caches/PredefinedParams.cmake
|
||||||
|
- -DSPIRV_BUILD_TESTS=ON
|
||||||
|
- -DCMAKE_BUILD_TYPE=Release
|
||||||
|
|
||||||
|
provides:
|
||||||
|
- bin/dxc
|
||||||
|
- bin/dxv
|
||||||
|
- bin/dxa
|
||||||
|
- bin/dxr
|
||||||
|
- bin/dxl
|
||||||
|
|
||||||
|
test:
|
||||||
|
script:
|
||||||
|
dxc --help
|
Loading…
Reference in a new issue