mirror of
https://github.com/polhenarejos/pico-hsm.git
synced 2026-01-17 09:28:05 +00:00
7 lines
246 B
Bash
Executable file
7 lines
246 B
Bash
Executable file
#!/bin/bash -eu
|
|
|
|
source tests/docker_env.sh
|
|
#run_in_docker rm -rf CMakeFiles
|
|
run_in_docker mkdir -p build_in_docker
|
|
run_in_docker -w "$PWD/build_in_docker" cmake -DENABLE_EMULATION=1 ..
|
|
run_in_docker -w "$PWD/build_in_docker" make -j ${NUM_PROC}
|