8 lines
138 B
Plaintext
8 lines
138 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
cmake --build cmake-build-debug/
|
||
|
cd cmake-build-debug/
|
||
|
#valgrind --leak-check=yes ./bitasicmon
|
||
|
strip bitasicmon
|
||
|
./bitasicmon
|