summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRadek Podgorny <radek@podgorny.cz>2022-01-04 19:39:24 +0100
committerRadek Podgorny <radek@podgorny.cz>2022-01-04 19:39:24 +0100
commitb05d06c9eb5b38d48962b21a72a1abd60b2cf765 (patch)
tree8dcbf5a429b38bf0ae0d4a5124bba0561ef9296d
parentacceb6b40e130a196e1603bbae377fe26d77854b (diff)
downloadunionfs-fuse-git-b05d06c9eb5b38d48962b21a72a1abd60b2cf765.tar.gz
readme updates
-rw-r--r--README.md15
1 files changed, 12 insertions, 3 deletions
diff --git a/README.md b/README.md
index f651e78..99cdbab 100644
--- a/README.md
+++ b/README.md
@@ -30,17 +30,26 @@ You can either use plain make or cmake (pick one).
1. plain make
-Just issue `make` - this compiles the code with some static settings (xattrs enabled, hard-coded fuse2, ...) tuned for my linux system.
+Just issue `make` - this compiles the code with some static settings (xattrs enabled, hard-coded libfuse2, ...) tuned for my linux system.
2. cmake
```
-mkdir build; cd build
+mkdir build
+cd build
cmake ..
make
```
-This should allow for compilation on wider variety of systems (linux, macos, ...) and allows to enable/disable some features (xattrs, ...).
+This should allow for compilation on wider variety of systems (linux, macos, ...) and allows to enable/disable some features (xattrs, libfuse2/libfuse3, ...).
+
+To see the list of all options, run `cmake -LAH` after the `cmake ..` step.
+
+Example of option usage:
+
+```
+cmake .. -DWITH_LIBFUSE3=FALSE -DWITH_XATTR=FALSE
+```
MacOS support
-------------