summaryrefslogtreecommitdiff
path: root/run.sh
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-09-02 15:41:23 +0300
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-09-02 15:41:23 +0300
commit27b51e8c35e62183583a80a8689591fdbaf031f9 (patch)
treec0af7189ad3cc35bb56c912aa3a2fe99235826f5 /run.sh
parentfa6df107cb0d78e708cb8457c0f7d74969156f56 (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-xrun.sh9
1 files changed, 9 insertions, 0 deletions
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