mirror of
https://github.com/circify/circ.git
synced 2026-04-21 03:00:54 -04:00
8 lines
208 B
Bash
Executable File
8 lines
208 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
if [[ ! -z ${KAHIP_SOURCE} ]]; then
|
|
cd ${KAHIP_SOURCE}
|
|
./compile_withcmake.sh -DCMAKE_BUILD_TYPE=Release -DPARHIP=off
|
|
else
|
|
echo "Missing KAHIP_SOURCE environment variable."
|
|
fi |