浏览代码

Add some notes

Johannes Kreutz 3 年之前
父节点
当前提交
cd07c5e453
共有 1 个文件被更改,包括 21 次插入1 次删除
  1. 21 1
      README.md

+ 21 - 1
README.md

@@ -1,3 +1,23 @@
 # Bachelorthesis
 
-Git project for my bachelor thesis
+Git project for my bachelor thesis
+
+# TrackpointApp
+## Development
+
+Note: Development on Windows is unsupported.
+
+To create a development build, clone the repo and go to the `trackpoint-app` folder.
+
+Create a new folder `build`.
+
+Qt has to be build separately, we use a script for it. Build Qt by executing `./build-dependencies-first.sh`.
+
+Then, go to the `build` folder and execute `cmake ..`. Cmake will download all other required dependencies automatically.
+
+When cmake is done, run `make`. For better performance, run `make -jX` and replace X by the thread count of your machine minus 1.
+
+You should now find the executable `TrackpointApp`.
+
+## Release
+WIP