mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
new scripts to make panda-standalone.zip
This commit is contained in:
parent
933df94292
commit
d72425f45d
17
direct/src/directscripts/make-panda-standalone.sh
Executable file
17
direct/src/directscripts/make-panda-standalone.sh
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
if [ -e panda-standalone.zip ]; then
|
||||||
|
echo panda-standalone.zip already exists!
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
for dir in $DTOOL $PANDA $DIRECT $PANDATOOL; do
|
||||||
|
zip -j panda-standalone.zip $dir/lib/*.dll $dir/bin/*.exe || exit
|
||||||
|
done
|
||||||
|
zip -j panda-standalone.zip $WINTOOLS/lib/*.dll $WINTOOLS/sdk/python/Python-2.2.2/PCbuild/*.dll || exit
|
||||||
|
|
||||||
|
cp $DIRECT/src/directscripts/standalone-Configrc /tmp/Configrc || exit
|
||||||
|
zip -j -m panda-standalone.zip /tmp/Configrc || exit
|
||||||
|
|
||||||
|
echo Success!
|
||||||
|
|
8
direct/src/directscripts/standalone-Configrc
Executable file
8
direct/src/directscripts/standalone-Configrc
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
# This Configrc file is provided by default in the
|
||||||
|
# panda-standalone.zip file generated by make-panda-standalone.sh.
|
||||||
|
|
||||||
|
load-display pandadx8
|
||||||
|
|
||||||
|
aux-display pandagl
|
||||||
|
aux-display pandadx8
|
||||||
|
aux-display pandadx7
|
Loading…
x
Reference in New Issue
Block a user