mirror of
https://github.com/greatscottgadgets/hackrf.git
synced 2026-03-05 06:55:33 +01:00
9 lines
126 B
Bash
Executable File
9 lines
126 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
git submodule init
|
|
git submodule update
|
|
cd firmware/hackrf_usb
|
|
cmake -B build
|
|
cmake --build build
|
|
cd ../..
|