diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -3,6 +3,9 @@
 
 Parser for SQL augmented with types
 
+Till it finalised I would recomend installing it: with `cabal -f debug-typed-queries` just to see what is gonig on. 
+ As the SQL parser is not complete, and will need a major lift to make it readable and sane... however it works fine for all queries I need.
+
 This package provides base parsing facilities for possibly all *-simple database packages converting them into *-simpel-typed
 
  * https://github.com/tolysz/mysql-simple-typed
diff --git a/typedquery.cabal b/typedquery.cabal
--- a/typedquery.cabal
+++ b/typedquery.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                typedquery
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Parser for SQL augmented with types
 description:         Base package for parsing queries
 homepage:            https://github.com/tolysz/typedquery
@@ -16,12 +16,20 @@
 extra-source-files:  README.md
 cabal-version:       >=1.10
 
+Flag debug-typed-queries
+  Description: Enable debug support
+  Default:     False
+
 library
   exposed-modules:     Database.TypedQuery.SQL
                        Database.TypedQuery.SQLParser
                        Database.TypedQuery.Types
   -- other-modules:       
   -- other-extensions:    
+  if flag(debug-typed-queries)
+    cpp-options: -DDEVELOPMENT
+    build-depends: rawstring-qm
+                 , haskell-src-exts
   build-depends:       base >=4.7 && <4.8
                ,       template-haskell
                ,       haskell-src-meta
