mirror of
https://github.com/eosswedenorg/antelope-keygen
synced 2026-06-17 03:50:03 +02:00
7 lines
99 B
Bash
Executable file
7 lines
99 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mkdir build 2> /dev/null
|
|
pushd build > /dev/null
|
|
cmake .. $@
|
|
make -B
|
|
popd > /dev/null
|