From e43e69bae3b639a90e0b71f59faf9b876f0f7ed3 Mon Sep 17 00:00:00 2001 From: Mike Goslin Date: Wed, 5 May 2004 02:06:26 +0000 Subject: [PATCH] Added gateway option --- direct/src/ffi/genPyCode | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/direct/src/ffi/genPyCode b/direct/src/ffi/genPyCode index 59dd23fd31..62c8a8b37d 100755 --- a/direct/src/ffi/genPyCode +++ b/direct/src/ffi/genPyCode @@ -4,6 +4,7 @@ # the three or four cases we use all the time # usage: genPyCode [opts] [linux|win-debug|win-release|win-publish|install|release] [other libs] +# -g adds libgateway # -t adds libtoontown # -p adds libpirates # -v adds libvrpn @@ -17,8 +18,9 @@ optimizeFlag="" ppython=ppython ppythonOptimizeFlag="" -while getopts tpven flag; do +while getopts gtpven flag; do case $flag in + g) extra_genPyCode_libs="$extra_genPyCode_libs libgateway" ;; t) extra_genPyCode_libs="$extra_genPyCode_libs libtoontown" ;; p) extra_genPyCode_libs="$extra_genPyCode_libs libpirates" ;; v) extra_genPyCode_libs="$extra_genPyCode_libs libvrpn" ;;