Files
advent-of-code/2015/build.sh
2025-11-14 07:14:53 -08:00

10 lines
99 B
Bash
Executable File

#!/bin/sh -e
mkdir -p build
cd build
cmake ..
make
cp advent ..
cp compile_commands.json ..
cd ..