aoc_omni/c_visualization/bin/run
2024-12-21 07:29:56 -05:00

16 lines
341 B
Bash
Executable File

#!/usr/bin/env bash
year=$1
day=$2
mkdir -p $year/$day
source_file=$(ls $year/$day/*.c)
if [[ -z $source_file ]] ; then
echo "No c source file found in $year/$day"
exit 1
fi
gcc -Wall -o $year/$day/problem $source_file -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 &&
time (cat ../data/$year/$day/input.txt | ./$year/$day/problem)