Update readme on cmake build types
diff --git a/README.rst b/README.rst
index 729597a..8dd823c 100644
--- a/README.rst
+++ b/README.rst
@@ -39,7 +39,7 @@
 
     make
 
-There are 3 different active build modes specified within the CMake buildsystem:
+There are 5 different active build modes specified within the CMake buildsystem:
 
 - Release.
   This generates the default code without any unnecessary information in the binary files.
@@ -47,6 +47,10 @@
   This generates debug information and disables optimization of the code.
 - Coverage.
   This generates code coverage information in addition to debug information.
+- ASan.
+  This instruments the code with AddressSanitizer to check for memory errors.
+- Check.
+  This activates more compiler warnings and treats them as errors.
 
 Switching build modes in CMake is simple. For debug mode, enter at the command line: