mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-26 08:26:50 +00:00
Don't copy .lib files as we don't need them
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user