aoc/build.sh

10 lines
99 B
Bash
Raw Normal View History

2021-12-10 11:01:51 -08:00
#!/bin/sh -e
2021-09-08 11:19:24 -07:00
mkdir -p build
cd build
cmake ..
make
cp advent ..
2021-09-08 12:12:11 -07:00
cp compile_commands.json ..
2021-09-08 11:19:24 -07:00
cd ..