Files
hackrf/ci-scripts/install-host.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

7 lines
68 B
Bash
Executable File

#!/bin/bash
set -e
cd host
cmake -B build
cmake --build build
cd ..