Add IronPython 2.7.4 to project

This commit is contained in:
baldurk
2014-10-09 18:25:47 +01:00
parent 3bd5f028dc
commit 9907abcc9b
19 changed files with 22690 additions and 0 deletions
+14
View File
@@ -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/