diff options
Diffstat (limited to 'devtools/bin/updatecef.sh')
| -rw-r--r-- | devtools/bin/updatecef.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devtools/bin/updatecef.sh b/devtools/bin/updatecef.sh new file mode 100644 index 0000000..27ced7b --- /dev/null +++ b/devtools/bin/updatecef.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# Bash script to update libcef from Steam/main to this project +# brings over all the dll's and import libraries and support libraries plus updates the header files +# run this, then resolve the changelist in perforce and submit + +SRCDIR=//Steam/main +PUBLISH_SCRIPT=//thirdpartycode/nonredist/chromeemb/dev/publish_cef_to_steam.py +DSTDIR="$(cd $(dirname "$0")/../../.. && echo $PWD)" + +p4 print -q $PUBLISH_SCRIPT | python - --game=tf2 "$DSTDIR" "$SRCDIR" +p4 merge $SRCDIR/client/bin/icudt.dll $DSTDIR/game/bin/icudt.dll |