aoc/build.sh

10 lines
99 B
Bash
Executable File

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