Mercurial > hg > orthanc-stone
view Applications/Samples/build-wasm.sh @ 366:a7de01c8fd29 am-2
new enum BitmapAnchor
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 01 Nov 2018 11:55:45 +0100 |
parents | be2660b6e40a |
children | e641d3978856 |
line wrap: on
line source
#!/bin/bash set -e currentDir=$(pwd) samplesRootDir=$(pwd) mkdir -p $samplesRootDir/build-wasm cd $samplesRootDir/build-wasm source ~/Downloads/emsdk/emsdk_env.sh cmake -DCMAKE_TOOLCHAIN_FILE=${EMSCRIPTEN}/cmake/Modules/Platform/Emscripten.cmake -DCMAKE_BUILD_TYPE=Release -DSTONE_SOURCES_DIR=$currentDir/../../../orthanc-stone -DORTHANC_FRAMEWORK_SOURCE=path -DORTHANC_FRAMEWORK_ROOT=$currentDir/../../../orthanc -DALLOW_DOWNLOADS=ON .. -DENABLE_WASM=ON make -j 5 echo "-- building the web application -- " cd $currentDir ./build-web.sh