From 27b51e8c35e62183583a80a8689591fdbaf031f9 Mon Sep 17 00:00:00 2001 From: xAlpharax <42233094+xAlpharax@users.noreply.github.com> Date: Sat, 2 Sep 2023 15:41:23 +0300 Subject: Initial migration of the project. It does work but would require some documentation. Changes to be committed: new file: LorenzAttractor.cpp new file: LorenzAttractor.h modified: README.md new file: main.cpp new file: run.sh new file: vectormath.h --- run.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 run.sh (limited to 'run.sh') diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..576894e --- /dev/null +++ b/run.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +set -e + +g++ -c main.cpp -o main.o + +g++ -c LorenzAttractor.cpp -o LorenzAttractor.o + +g++ main.o LorenzAttractor.o -o MyProgram -lsfml-graphics -lsfml-window -lsfml-system -- cgit v1.2.3