From 45ac961f5701cf9073fd358689c85ed54ac74041 Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Sat, 6 Jun 2020 12:50:02 +0200 Subject: [PATCH] switched build instructions to meson --- doc/build.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/build.md b/doc/build.md index 36aa33c..8f4fc45 100644 --- a/doc/build.md +++ b/doc/build.md @@ -2,11 +2,9 @@ To install dependecies, see below. - cd webfused - mkdir build + meson build cd build - cmake .. - make + ninja ./webfused -f webfused.conf ## Dependencies @@ -20,6 +18,10 @@ To install dependecies, see below. - [linux-pam](http://www.linux-pam.org/) - [Google Test](https://github.com/google/googletest) *(Test only)* +It is recommended to provide all dependencies outside of the project. + +To simply development, some dependencies are bundled using meson wrap files. Note that installing webfused will also install subprojects, when they are used (this is typically not what you want). + ### libfuse To install libfuse, meson is needed. Please refer to [meson quick guide](https://mesonbuild.com/Quick-guide.html) for setup instructions.