aoc/build.sh

10 lines
105 B
Bash
Raw Normal View History

2021-09-08 11:19:24 -07:00
#! /usr/bin/env sh
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 ..