mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -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
|
||||
# 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
|
||||
# -v adds libvrpn
|
||||
# -e adds libpandaegg
|
||||
# -n doesn't perform a squeeze
|
||||
|
||||
base_dir=$(pwd)
|
||||
@ -15,10 +16,11 @@ optimizeFlag=""
|
||||
ppython=ppython
|
||||
ppythonOptimizeFlag=""
|
||||
|
||||
while getopts tvn flag; do
|
||||
while getopts tven flag; do
|
||||
case $flag in
|
||||
t) extra_genPyCode_libs="$extra_genPyCode_libs libtoontown" ;;
|
||||
v) extra_genPyCode_libs="$extra_genPyCode_libs libvrpn" ;;
|
||||
e) extra_genPyCode_libs="$extra_genPyCode_libs libpandaegg" ;;
|
||||
n) fSqueeze="" ;;
|
||||
esac
|
||||
done
|
||||
|
Loading…
x
Reference in New Issue
Block a user