Files
icicle/examples/c++/polynomial_multiplication/compile.sh
yshekel 3582df2669 Mixed-radix NTT algorithm
Co-authored-by: hadaringonyama <hadar@ingonyama.com>
2024-02-08 13:52:00 +02:00

12 lines
119 B
Bash
Executable File

#!/bin/bash
# Exit immediately on error
set -e
rm -rf build
mkdir -p build
cmake -S . -B build
cmake --build build