Don't copy .lib files as we don't need them

This commit is contained in:
baldurk
2018-08-20 11:57:04 +01:00
parent c599ab96e6
commit bd7a3c966e
@@ -20,11 +20,11 @@ mkdir -p dist/Release{32,64}
# Copy files from release build in, without copying obj/
pushd x64/Release
find * -not -path 'obj*' -and -not -path 'pymodules*' -exec cp -r --parents '{}' ../../dist/Release64/ \;
find * -not -path 'obj*' -and -not -path '*.lib' -and -not -path 'pymodules*' -exec cp -r --parents '{}' ../../dist/Release64/ \;
popd
pushd Win32/Release
find * -not -path 'obj*' -and -not -path 'pymodules*' -exec cp -r --parents '{}' ../../dist/Release32/ \;
find * -not -path 'obj*' -and -not -path '*.lib' -and -not -path 'pymodules*' -exec cp -r --parents '{}' ../../dist/Release32/ \;
popd
# Copy in d3dcompiler from windows kit. Prefer 10 over 8.1 but either works