mirror of
https://github.com/Noltari/pico-uart-bridge.git
synced 2025-01-01 12:05:59 +00:00
16 lines
135 B
Bash
16 lines
135 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
BUILD_DIR=build
|
||
|
|
||
|
main () {
|
||
|
local cur_dir=$PWD
|
||
|
|
||
|
mkdir -p $BUILD_DIR
|
||
|
cd $BUILD_DIR
|
||
|
cmake ..
|
||
|
make
|
||
|
cd $cur_dir
|
||
|
}
|
||
|
|
||
|
main $@
|