diff options
author | Wade Berrier <wberrier@gmail.com> | 2017-04-28 19:45:14 -0600 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-04-29 12:34:07 +0300 |
commit | d542b2c0ccdc4f7985d7f17c5d58709b6fbd8058 (patch) | |
tree | 026533b757b82b767d6a4975b65f4afb3a08d5b9 /docs/markdown | |
parent | f2465e6545332d803973b21792a3d9db17ed9577 (diff) | |
download | meson-d542b2c0ccdc4f7985d7f17c5d58709b6fbd8058.zip meson-d542b2c0ccdc4f7985d7f17c5d58709b6fbd8058.tar.gz meson-d542b2c0ccdc4f7985d7f17c5d58709b6fbd8058.tar.bz2 |
deps: boost: add some documentation about environment variables
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Dependencies.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/markdown/Dependencies.md b/docs/markdown/Dependencies.md index 9862986..c57b9d4 100644 --- a/docs/markdown/Dependencies.md +++ b/docs/markdown/Dependencies.md @@ -41,6 +41,8 @@ exe = executable('myprog', 'file.cc', dependencies : boost_dep) You can call `dependency` multiple times with different modules and use those to link against your targets. +If your boost headers or libraries are in non-standard locations you can set the BOOST_ROOT, BOOST_INCLUDEDIR, and/or BOOST_LIBRARYDIR environment variables. + ## GTest and GMock ## GTest and GMock come as sources that must be compiled as part of your project. With Meson you don't have to care about the details, just pass `gtest` or `gmock` to `dependency` and it will do everything for you. If you want to use GMock, it is recommended to use GTest as well, as getting it to work standalone is tricky. |