1
0
mirror of https://github.com/falk-werner/webfused synced 2024-10-27 20:44:08 +00:00

switched build instructions to meson

This commit is contained in:
Falk Werner 2020-06-06 12:50:02 +02:00
parent 0328572c54
commit 45ac961f57

View File

@ -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.