mirror of
https://github.com/pseXperiments/icicle.git
synced 2026-01-10 07:57:56 -05:00
## New Example This new c++ example shows the basics of RISC0 protocol using our Polynomial API
15 lines
339 B
Bash
Executable File
15 lines
339 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Exit immediately on error
|
|
set -e
|
|
|
|
mkdir -p build/example
|
|
mkdir -p build/icicle
|
|
|
|
# Configure and build Icicle
|
|
cmake -S ../../../icicle/ -B build/icicle -DCMAKE_BUILD_TYPE=Release -DFIELD=babybear
|
|
cmake --build build/icicle
|
|
|
|
# Configure and build the example application
|
|
cmake -S . -B build/example
|
|
cmake --build build/example |