esp32_bluetooth_classic_sni.../build.sh

17 lines
264 B
Bash
Raw Normal View History

2021-09-06 01:45:23 +00:00
#!/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!"