mirror of
https://github.com/circify/circ.git
synced 2026-01-12 23:28:14 -05:00
9 lines
211 B
Bash
Executable File
9 lines
211 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
if [[ ! -z ${SEAL_SOURCE} ]]; then
|
|
cd ${SEAL_SOURCE}
|
|
cmake -S . -B build -DSEAL_BUILD_EXAMPLES=ON
|
|
cmake --build build
|
|
else
|
|
echo "Missing SEAL_SOURCE environment variable."
|
|
fi |