diff Applications/StoneWebViewer/WebAssembly/docker-internal.sh @ 1827:21ccc00839f7 StoneWebViewer-2.0

upgrade to Emscripten 2.0.23
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 27 May 2021 11:05:59 +0200
parents 9ac2a65d4172
children 3889ae96d2e9
line wrap: on
line diff
--- a/Applications/StoneWebViewer/WebAssembly/docker-internal.sh	Thu May 27 09:11:36 2021 +0200
+++ b/Applications/StoneWebViewer/WebAssembly/docker-internal.sh	Thu May 27 11:05:59 2021 +0200
@@ -26,16 +26,15 @@
 # Use a folder that is writeable by non-root users for the Emscripten cache
 export EM_CACHE=/tmp/emscripten-cache
 
-# Get the Orthanc framework
-cd /tmp/
-hg clone https://hg.orthanc-server.com/orthanc/
-
 # Make a copy of the read-only folder containing the source code into
 # a writeable folder, because of "DownloadPackage.cmake" that writes
 # to the "ThirdPartyDownloads" folder next to the "CMakeLists.txt"
 cd /source
 hg clone /source /tmp/source-writeable
 
+cd /tmp/source-writeable
+hg up -c ${STONE_BRANCH}
+
 mkdir /tmp/build
 cd /tmp/build
 
@@ -43,7 +42,6 @@
       -DCMAKE_BUILD_TYPE=$1 \
       -DORTHANC_STONE_INSTALL_PREFIX=/target/StoneWebViewer \
       -DCMAKE_TOOLCHAIN_FILE=${EMSDK}/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake \
-      -DORTHANC_FRAMEWORK_ROOT=/tmp/orthanc/OrthancFramework/Sources \
       -DSTATIC_BUILD=ON \
       -G Ninja