comparison Applications/Samples/build-wasm.sh @ 464:33983c2178ba am-touch-events

doc
author Alain Mazy <alain@mazy.be>
date Thu, 07 Feb 2019 09:27:32 +0100
parents 1155d0b4f557
children 801d2697a1b1
comparison
equal deleted inserted replaced
463:1155d0b4f557 464:33983c2178ba
1 #!/bin/bash 1 #!/bin/bash
2 # 2 #
3 # usage: 3 # usage:
4 # to build all targets: 4 # to build all targets in Debug:
5 # ./build-wasm.sh 5 # ./build-wasm.sh
6 # 6 #
7 # to build a single target: 7 # to build a single target in release:
8 # ./build-wasm.sh OrthancStoneSingleFrameEditor 8 # ./build-wasm.sh OrthancStoneSingleFrameEditor Release
9 9
10 set -e 10 set -e
11 11
12 target=${1:-all} 12 target=${1:-all}
13 buildType=${2:-Debug} 13 buildType=${2:-Debug}