mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-29 21:30:53 +00:00
Clean up folder structure a bit, move .NET 3rdparty under renderdocui/
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ $# -ne 1 ]; then
|
||||
echo "Usage: $0 /path/to/IronPython/";
|
||||
exit;
|
||||
fi
|
||||
|
||||
IRONPYTHON="$1"
|
||||
LIBS=$(cat libs.txt | awk '{print "Lib/"$1}')
|
||||
OUTDIR=$PWD
|
||||
|
||||
cd $IRONPYTHON
|
||||
./ipy.exe Tools/Scripts/pyc.py /target:dll /out:pythonlibs $LIBS
|
||||
mv pythonlibs.dll $OUTDIR/
|
||||
Reference in New Issue
Block a user