esp32_bluetooth_classic_sni.../build.sh
Matheus Eduardo Garbelini c1fc3f84e3 Step 1 Update
2021-09-06 09:45:23 +08:00

16 lines
264 B
Bash
Executable file

#!/usr/bin/env bash
echo -e "\nCompiling Bluekitchen BT programs"
sudo apt install cmake software-properties-common -y
mkdir -p build
cd build
cmake ../
make -j
cd ../
echo -e "\n\nBuilding external h4bcm dissector"
cd dissectors
./build.sh
cd ../
echo "Done!"