diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-09-02 15:41:23 +0300 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-09-02 15:41:23 +0300 |
commit | 27b51e8c35e62183583a80a8689591fdbaf031f9 (patch) | |
tree | c0af7189ad3cc35bb56c912aa3a2fe99235826f5 /run.sh | |
parent | fa6df107cb0d78e708cb8457c0f7d74969156f56 (diff) |
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
Diffstat (limited to 'run.sh')
-rwxr-xr-x | run.sh | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 |