Added support for amalgated source and header generation (a la sqlite). Refer to README.txt section "Generating amalgated source and header" for detail.
The amalgated sources are generated by concatenating JsonCpp source in the correct order and defining macro JSON_IS_AMALGATED to prevent inclusion of other headers. Sources and header has been modified to prevent any inclusion when this macro is defined.
The script amalgate.py handle the generation.
diff --git a/include/json/reader.h b/include/json/reader.h
index 2cd94eb..13de15c 100644
--- a/include/json/reader.h
+++ b/include/json/reader.h
@@ -6,8 +6,10 @@
#ifndef CPPTL_JSON_READER_H_INCLUDED
# define CPPTL_JSON_READER_H_INCLUDED
+#if !defined(JSON_IS_AMALGATED)
# include "features.h"
# include "value.h"
+#endif // if !defined(JSON_IS_AMALGATED)
# include <deque>
# include <stack>
# include <string>