summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/setting-up-dev-env.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/setting-up-dev-env.md b/docs/setting-up-dev-env.md
index 9fc63bb3..319f7caf 100644
--- a/docs/setting-up-dev-env.md
+++ b/docs/setting-up-dev-env.md
@@ -31,6 +31,14 @@ In the same way, if did not install Kube in the `/usr` directory, you might
31need to set the `QML2_IMPORT_PATH` to something like this: 31need to set the `QML2_IMPORT_PATH` to something like this:
32`$KUBE_INSTALL_PREFIX/lib/qml/`. 32`$KUBE_INSTALL_PREFIX/lib/qml/`.
33 33
34### Flatbuffers
35
36If your distro has a package, simply installing it should do the trick.
37
38If it doesn't (yet), follow the instructions here: http://google.github.io/flatbuffers/flatbuffers_guide_building.html
39
40Sink will require the flatc executable to generate some relevant headers that we require.
41
34## Docker 42## Docker
35Building kube in a docker containers ensures reproducability and decouples the development environment from the host system (so upgrading your host system doesn't break all your builds). To avoid having to develop inside the container directly, source, build and install directories reside on the host system. 43Building kube in a docker containers ensures reproducability and decouples the development environment from the host system (so upgrading your host system doesn't break all your builds). To avoid having to develop inside the container directly, source, build and install directories reside on the host system.
36 44