Files
hackrf/ci-scripts/install-firmware.sh
A. Maitland Bottoms 48034f7e2e update scripts
Modernize CMake usage in scripts to define a build directory
using the cmake -B flag, use cmake --build rather than just make.
2025-09-19 02:59:30 +01:00

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 ../..