mirror of
https://github.com/polhenarejos/pico-fido.git
synced 2025-12-19 02:48:04 +08:00
8 lines
246 B
Bash
Executable File
8 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}
|