You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#lockdown: Nick.Penwarden #rb None #ROBOMERGE-OWNER: ryan.gerleve #ROBOMERGE-AUTHOR: jack.porter #ROBOMERGE-SOURCE: CL 4806726 in //UE4/Main/... #ROBOMERGE-BOT: ENGINE (Main -> Dev-Networking) [CL 4806733 by jack porter in Dev-Networking branch]
40 lines
879 B
Bash
Executable File
40 lines
879 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# build all ThirdParty libs for HTML5
|
|
# from the simplest to build to the most complex
|
|
TPS_HTML5=$(pwd)
|
|
|
|
cd "$TPS_HTML5"/../zlib/zlib-1.2.5/Src/HTML5
|
|
./build_html5.sh
|
|
|
|
cd "$TPS_HTML5"/../libPNG/libPNG-1.5.2/projects/HTML5
|
|
./build_html5.sh
|
|
|
|
cd "$TPS_HTML5"/../FreeType2/FreeType2-2.6/Builds/html5
|
|
./build_html5.sh
|
|
|
|
cd "$TPS_HTML5"/../Ogg/libogg-1.2.2/build/HTML5
|
|
./build_html5.sh
|
|
|
|
cd "$TPS_HTML5"/../Vorbis/libvorbis-1.3.2/build/HTML5
|
|
./build_html5.sh
|
|
|
|
# WARNING: this might take a while...
|
|
cd "$TPS_HTML5"/../ICU/icu4c-53_1
|
|
./BuildForHTML5.sh
|
|
|
|
cd "$TPS_HTML5"/../HarfBuzz/harfbuzz-1.2.4/BuildForUE/HTML5
|
|
./BuildForHTML5.sh
|
|
|
|
# WARNING: this might take a while...
|
|
cd "$TPS_HTML5"/../PhysX3/PhysX_3.4/Source/compiler/cmake/html5
|
|
./BuildForHTML5.sh
|
|
|
|
# WARNING: this might take a while...
|
|
cd "$TPS_HTML5"/../SDL2
|
|
./build_html5.sh
|
|
|
|
cd "$TPS_HTML5"
|
|
|
|
echo 'Success!'
|