1
0
mirror of https://github.com/ssloy/tinyraycaster.git synced 2025-01-17 05:08:22 +01:00
tinyraycaster/.gitpod.yml
2019-02-11 14:06:16 +00:00

18 lines
273 B
YAML

image:
file: Dockerfile
ports:
- port: 6080
onOpen: notify
- port: 5900
onOpen: ignore
tasks:
- command: >
mkdir --parents build &&
cd build &&
cmake .. &&
make &&
./tinyraycaster &&
pnmtopng out.ppm > out.png &&
open out.png &&
cd ..