mirror of
https://github.com/dashpay/dash.git
synced 2024-12-24 11:32:46 +01:00
c1992c149e
9329803969 wip: fix FromBytesUnchecked (#68) 767713de3d feat: js bindings in camel case (#66) 06df92693a chore(release): bump version (#64) 73593feefd fix: the JS bundle script and bindings (#47) 38a8f768c6 Merge pull request #61 from kittywhiskers/compat_support d9b375145e ci: ensure that CMakeFiles are compatible with LTS-bundled cmake 5ba1b520cc build: restore CMake 3.14.0 compatibility d1c1b66e5f backport: merge bls-signatures#332 (Python 3.11) git-subtree-dir: src/dashbls git-subtree-split: 9329803969fd325dc0d5c9029ab15669d658ed5d
19 lines
299 B
Bash
Executable File
19 lines
299 B
Bash
Executable File
DOCKER_IMAGE=emscripten/emsdk
|
|
|
|
git submodule update --init --recursive
|
|
mkdir js_build
|
|
|
|
docker run \
|
|
--rm \
|
|
-v $(pwd):/src \
|
|
-w="/src/js_build" \
|
|
$DOCKER_IMAGE \
|
|
emcmake cmake /src
|
|
|
|
docker run \
|
|
--rm \
|
|
-v $(pwd):/src \
|
|
-w="/src/js_build" \
|
|
$DOCKER_IMAGE \
|
|
cmake --build . -- -j10
|