mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
-e adds libpandaegg
This commit is contained in:
parent
56bbc2e3cb
commit
10131ba504
@ -2,10 +2,11 @@
|
|||||||
|
|
||||||
# This is just a helper script to generatePythonCode to cover
|
# This is just a helper script to generatePythonCode to cover
|
||||||
# the three or four cases we use all the time
|
# the three or four cases we use all the time
|
||||||
# usage: genPyCode [-t] [-v] [-n] [linux|win-debug|win-release|win-publish|install|release] [other libs]
|
# usage: genPyCode [opts] [linux|win-debug|win-release|win-publish|install|release] [other libs]
|
||||||
|
|
||||||
# -t adds libtoontown
|
# -t adds libtoontown
|
||||||
# -v adds libvrpn
|
# -v adds libvrpn
|
||||||
|
# -e adds libpandaegg
|
||||||
# -n doesn't perform a squeeze
|
# -n doesn't perform a squeeze
|
||||||
|
|
||||||
base_dir=$(pwd)
|
base_dir=$(pwd)
|
||||||
@ -15,10 +16,11 @@ optimizeFlag=""
|
|||||||
ppython=ppython
|
ppython=ppython
|
||||||
ppythonOptimizeFlag=""
|
ppythonOptimizeFlag=""
|
||||||
|
|
||||||
while getopts tvn flag; do
|
while getopts tven flag; do
|
||||||
case $flag in
|
case $flag in
|
||||||
t) extra_genPyCode_libs="$extra_genPyCode_libs libtoontown" ;;
|
t) extra_genPyCode_libs="$extra_genPyCode_libs libtoontown" ;;
|
||||||
v) extra_genPyCode_libs="$extra_genPyCode_libs libvrpn" ;;
|
v) extra_genPyCode_libs="$extra_genPyCode_libs libvrpn" ;;
|
||||||
|
e) extra_genPyCode_libs="$extra_genPyCode_libs libpandaegg" ;;
|
||||||
n) fSqueeze="" ;;
|
n) fSqueeze="" ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user