diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-04-05 16:03:59 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-04-05 16:03:59 +0200 |
commit | 1bc120a25bd214fe211d06a1f918d8cba811fa8e (patch) | |
tree | f890d40b78306f9fbcd520efcc132e3629f771dc /docs/setting-up-dev-env.md | |
parent | 0a28fda7e13dd1bcf49fd43d0d790c2dd5d10e65 (diff) | |
download | kube-1bc120a25bd214fe211d06a1f918d8cba811fa8e.tar.gz kube-1bc120a25bd214fe211d06a1f918d8cba811fa8e.zip |
Added a building note about flatbuffers
Diffstat (limited to 'docs/setting-up-dev-env.md')
-rw-r--r-- | docs/setting-up-dev-env.md | 8 |
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 | |||
31 | need to set the `QML2_IMPORT_PATH` to something like this: | 31 | need 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 | |||
36 | If your distro has a package, simply installing it should do the trick. | ||
37 | |||
38 | If it doesn't (yet), follow the instructions here: http://google.github.io/flatbuffers/flatbuffers_guide_building.html | ||
39 | |||
40 | Sink will require the flatc executable to generate some relevant headers that we require. | ||
41 | |||
34 | ## Docker | 42 | ## Docker |
35 | Building 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. | 43 | Building 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 | ||