tinyraytracer/.gitpod.yml
2019-01-25 17:33:30 +01:00

13 lines
206 B
YAML

image:
file: Dockerfile
tasks:
- command: >
mkdir --parents build &&
cd build &&
cmake .. &&
make &&
./tinyraytracer &&
pnmtopng out.ppm > out.png &&
open out.png &&
cd ..