aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2020-08-11 18:09:42 +0200
committerJulian T <julian@jtle.dk>2020-08-11 18:09:42 +0200
commit3b8893902ac5f529faf15accaa3fb5360771d3b3 (patch)
tree402333a7fbb4310a3019cdcac16eae272fc1b356 /readme.md
parent4348cc9581bfea05359485c5d2d074132d0271da (diff)
Added readme
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/readme.md b/readme.md
new file mode 100644
index 0000000..649a102
--- /dev/null
+++ b/readme.md
@@ -0,0 +1,39 @@
+# Pathtracing
+
+## Build requirements
+
+- Catch2
+- Qt5
+
+## Building
+
+This is just standard cmake building.
+
+```
+mkdir build
+cd build
+cmake ../
+make
+```
+
+The program does currently not have any options, so just run it.
+
+```
+./pathtracing
+```
+
+
+## Testing
+
+To test the program follow the steps above but instead of `make` run `make test`.
+
+```
+make test
+```
+
+Then run the test executable.
+Remember to rerun `make test` when changing source files.
+
+```
+./run_test
+```