mirror of
https://github.com/greatscottgadgets/hackrf.git
synced 2026-02-19 16:22:52 +01:00
Modernize CMake usage in scripts to define a build directory using the cmake -B flag, use cmake --build rather than just make.
7 lines
68 B
Bash
Executable File
7 lines
68 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
cd host
|
|
cmake -B build
|
|
cmake --build build
|
|
cd ..
|