Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • add-gitlab-ci
  • main
2 results

Target

Select target project
  • leo/tty2xy
  • paul/tty2xy
2 results
Select Git revision
  • main
1 result
Show changes
Commits on Source (6)
a.out
image: debian:latest
before_script:
- apt update > /dev/null
- apt install -y build-essential make libglu1-mesa-dev freeglut3-dev libpthread-stubs0-dev > /dev/null
build_sim:
script:
- make sim
......@@ -24,4 +24,4 @@ flash: $(TARGET).hex
avrdude -p $(MCU) -P $(PORT) -c avrisp -b 19200 -U flash:w:$(TARGET).hex
sim:
gcc main.c gol.c draw.c helpMath.c sim.c demo.c -g -D SIMULATION -lglut -lGL -lm -lGLU -Werror -Wextra
\ No newline at end of file
gcc main.c gol.c draw.c helpMath.c sim.c -g -D SIMULATION -lglut -lGL -lm -lGLU -Werror -Wextra