mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-30 22:24:15 +01:00
1bfd37a013
* enable unity build for releases * let the packaging script work wth relative paths * add build option to enable building the test binaries; disabled by default * disable unity build until it's been more tested
46 lines
1.2 KiB
Bash
Executable File
46 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -z "$1" ] || [ -z "$2" ]; then
|
|
echo "Usage: package-release.sh version destdir"
|
|
exit 1
|
|
fi
|
|
|
|
DXVK_VERSION="$1"
|
|
DXVK_SRC_DIR=`dirname $(readlink -f $0)`
|
|
DXVK_TMP_DIR="/tmp/dxvk-$DXVK_VERSION"
|
|
DXVK_ARCHIVE_PATH=$(realpath "$2")"/dxvk-$DXVK_VERSION.tar.gz"
|
|
|
|
function build_arch {
|
|
cd "$DXVK_SRC_DIR"
|
|
|
|
meson --cross-file "$DXVK_SRC_DIR/build-win$1.txt" \
|
|
--buildtype "release" \
|
|
--prefix "$DXVK_TMP_DIR/install.$1" \
|
|
--unity off \
|
|
--strip \
|
|
-Denable_tests=false \
|
|
"$DXVK_TMP_DIR/build.$1"
|
|
|
|
cd "$DXVK_TMP_DIR/build.$1"
|
|
ninja install
|
|
|
|
mkdir "$DXVK_TMP_DIR/x$1"
|
|
|
|
cp "$DXVK_TMP_DIR/install.$1/bin/d3d11.dll" "$DXVK_TMP_DIR/x$1/d3d11.dll"
|
|
cp "$DXVK_TMP_DIR/install.$1/bin/dxgi.dll" "$DXVK_TMP_DIR/x$1/dxgi.dll"
|
|
cp "$DXVK_TMP_DIR/install.$1/bin/setup_dxvk.sh" "$DXVK_TMP_DIR/x$1/setup_dxvk.sh"
|
|
|
|
rm -R "$DXVK_TMP_DIR/build.$1"
|
|
rm -R "$DXVK_TMP_DIR/install.$1"
|
|
}
|
|
|
|
function package {
|
|
cd "$DXVK_TMP_DIR/.."
|
|
tar -czf "$DXVK_ARCHIVE_PATH" "dxvk-$DXVK_VERSION"
|
|
rm -R "dxvk-$DXVK_VERSION"
|
|
}
|
|
|
|
build_arch 64
|
|
build_arch 32
|
|
package
|