README.md: Updated. Added code coverage.
authorFelipe Barriga Richards <spam@felipebarriga.cl>
Mon, 31 Oct 2016 19:07:41 +0000 (16:07 -0300)
committerFelipe Barriga Richards <spam@felipebarriga.cl>
Mon, 31 Oct 2016 20:40:40 +0000 (17:40 -0300)
README.md

index 62e83994a9134c4aab933c247ee5ae947e8929be..b2411ef706ececed29a6732e44308844153c13b0 100644 (file)
--- a/README.md
+++ b/README.md
@@ -19,16 +19,25 @@ To unmount the filesystem:
     fusermount -u mountpoint
 
 
-## Installing
+## Building
 
 First you need to download FUSE 2.9 or later from
 http://github.com/libfuse/libfuse.
 
-    mkdir build
-    cd build
+    mkdir build && cd build
     cmake ..
     make
 
+## Code Coverage
+
+    mkdir build && cd build
+    cmake -DENABLE_CODECOVERAGE=1 -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_BUILD_TYPE=Debug ..
+    make
+    make fuse_xattrs_coverage
+
+## Installing
+
+    make install
 
 ## Links