kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit 2d1ed775b8b0cc4f6a224266fc80d2c62b951e85
parent d6ddc4f30bddb7062d0d719879e0612cf29fe44c
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date:   Sat, 20 Jan 2024 01:00:41 +0000

ci/run.sh: work out of tree

Diffstat:
Mci/run.sh | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/ci/run.sh b/ci/run.sh @@ -2,13 +2,14 @@ set -e build_dir=$1 +src_dir=$(pwd) shift echo Preparing directories... rm -r $build_dir || true mkdir $build_dir pushd $build_dir -echo Running cmake -GNinja -DENABLE_TESTS=ON "$@" .. -cmake -GNinja -DENABLE_TESTS=ON "$@" .. +echo Running cmake -GNinja -DENABLE_TESTS=ON "$@" $src_dir +cmake -GNinja -DENABLE_TESTS=ON "$@" $src_dir echo Running ninja... ninja echo Running tests...