mirror of
https://github.com/greatscottgadgets/hackrf.git
synced 2026-03-03 05:55:18 +01:00
Modernize CMake usage in scripts to define a build directory using the cmake -B flag, use cmake --build rather than just make.
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 ../..
|